Content deleted Content added
No edit summary |
|||
Line 28:
==History==
Gosu began in 2002 as a scripting language called GScript at Guidewire Software. It was used to configure business logic in Guidewire's applications and was more of a simple rule definition language. In it's original incarnation it followed [[ECMAScript]] guidelines. Guidewire enhanced the scripting language over the next 8 years, and released Gosu 0.7 beta to the community in November of 2010.
==Examples==
Fibonacci
<source lang="C">
function fib(n : int): int{
if (n < 2) return n
return fib(n-1) + fib(n-2)
}
print (fib (20))
</source>
==References==
|