Mercurial > repos > tabletprog
view samples/recursive_closure.tp @ 179:75aca5f87969
A bunch of fixes in x86 instruction encoding
author | Mike Pavone <pavone@retrodev.com> |
---|---|
date | Sat, 24 Aug 2013 09:56:29 -0700 |
parents | 3a169ebb3224 |
children |
line wrap: on
line source
#{ main <- { foo <- :n { if: n < 10 { true } else: { foo <- :n { n } } foo: n + 1 } print: (string: (foo: 0)) } }