view samples/compilerbug_003.tp @ 178:e823e104b845

Add initial work on bytearrays with support for allocating executable memory
author Mike Pavone <pavone@retrodev.com>
date Sat, 24 Aug 2013 09:55:54 -0700
parents 86ebdfb33711
children
line wrap: on
line source

{
	foo <- { 42 }
	#{
		qux <- foo:
		bar <- #{
			
			baz <- {
				foo:
			}
			
		}
		
		main <- {
			print: (string: (bar baz))
		}
	}
}