Talk:Gosu (programming language)
Appearance
![]() | The content of GScript was merged into Gosu (programming language) on 2 May 2021. The former page's history now serves to provide attribution for that content in the latter page, and it must not be deleted as long as the latter page exists. 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