view samples/compilerbug_004.tp @ 374:368fbc9ea51b

Fix use of struct keyword in LL dialect expressions
author Michael Pavone <pavone@retrodev.com>
date Fri, 14 Aug 2015 23:07:34 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

#{
	foo <- 42
	new <- {
		#{
			bar <- foo
		}
	}

	main <- {
		print: (string: ((new: ) bar)) . "\n"
	}

}