view samples/compilerbug_005.tp @ 119:77f7cd65e121

Add selection of number and string literals. Support inward navigation of lambdas.
author Mike Pavone <pavone@retrodev.com>
date Wed, 17 Apr 2013 00:23:05 -0700
parents ba032565c7a5
children
line wrap: on
line source

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