Jump to content

Talk:Gosu (programming language)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Supyovalk (talk | contribs) at 14:43, 28 July 2024 (Assessment: banner shell (Rater)). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

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