Jon Keating
Member since Dec 25, 2010
- Profile: /members/7497-jon-keating.htm
- URL: http://tech.thejon.org/
- Comments: 1
Recent Blog Comments By Jon Keating
-
Seven Languages In Seven Weeks: Io - Day 2
Posted on Dec 25, 2010 at 6:24 AM
I think this is a better recurisve version of fib: fib := method(n, if(n == 0) then(return 0) elseif(n == 1) then(return 1) else(return fib(n-2) + fib(n-1)) )... read more »