Mercurial > repos > tabletprog
view samples/fib.tp @ 194:30bed95cbb18
Apply register assignments in il module
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Mon, 26 Aug 2013 20:42:20 -0700 |
parents | 3a169ebb3224 |
children |
line wrap: on
line source
#{ fib <- :n { if: n < 2 { 1 } else: { (fib: n-1) + (fib: n-2) } } main <- { print: (string: (fib: 30)) . "\n" } }