Mercurial > repos > tabletprog
view samples/fib.tp @ 48:18ab96287c3a
Add builtin module os containing some baisc POSIX file IO
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Fri, 13 Jul 2012 10:46:27 -0700 |
parents | 9dd370530f69 |
children | 3a169ebb3224 |
line wrap: on
line source
#{ true <- #{ if:else <- :self trueblock :elseblock { trueblock: } } false <- #{ if:else <- :self trueblock :elseblock { elseblock: } } fib <- :n { if: n < 2 { 1 } else: { (fib: n-1) + (fib: n-2) } } main <- { print: (string: (fib: 30)) . "\n" } }