view samples/compilerbug_003.tp @ 254:0ee70ac20a02

Support assigment of literals while preparing the environment for a macro
author Michael Pavone <pavone@retrodev.com>
date Sat, 31 May 2014 21:30:18 -0700
parents 86ebdfb33711
children
line wrap: on
line source

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