Talk:Gosu (programming language)
Appearance
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
[edit]Fibonacci
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
[edit]Received 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
Categories:
- Start-Class Computer science articles
- Unknown-importance Computer science articles
- WikiProject Computer science articles
- Start-Class software articles
- Unknown-importance software articles
- Start-Class software articles of Unknown-importance
- Start-Class Computing articles
- Unknown-importance Computing articles
- All Computing articles
- All Software articles