Jump to content

Talk:Gosu (programming language)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Examples

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 (talkcontribs) 18:04, 7 January 2011 (UTC)[reply]

March 2018 date is no longer in dispute

Received clarifications from Scott McKinney, the language author, who has apparently updated the Article to clarify the history and current state. [1]

References

  1. ^ internal Guidewire company Slack discussion