view samples/compilerbug_005.tp @ 204:a8dffa4d4b54

Add support for the rest of the instructions currently defined in the il module in the x86 module
author Mike Pavone <pavone@retrodev.com>
date Wed, 28 Aug 2013 21:50:22 -0700
parents ba032565c7a5
children
line wrap: on
line source

#{
	foo <- { "foobar" }
	bar <- #{
		baz <- {
			print: foo
		}
	}
	main <- {
		print: foo
		bar baz
	}
}