Talk:Gosu (programming language)

Latest comment: 13 years ago by Metapete in topic Examples

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