Talk:Gosu (programming language)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

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

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

  1. ^ internal Guidewire company Slack discussion