Talk:Gosu (programming language)
Latest comment: 13 years ago by Metapete in topic Examples
The contents of the GScript page were merged into Gosu (programming language) on 2 May 2021. For the contribution history and old versions of the redirected page, please see its history; for the discussion at that location, see its talk page. |
This article is rated Start-class on Wikipedia's content assessment scale. It is of interest to the following WikiProjects: | |||||||||||||||||||||||||||||||
|
Examples
editFibonacci
function fib(n : int): int{
if (n < 2) return n
return fib(n-1) + fib(n-2)
}
print (fib (20))
— Preceding unsigned comment added by Metapete (talk • contribs) 18:04, 7 January 2011 (UTC)
March 2018 date is no longer in dispute
editReceived clarifications from Scott McKinney, the language author, who has apparently updated the Article to clarify the history and current state. [1]
References
- ^ internal Guidewire company Slack discussion