view samples/compilerbug_004.tp @ 176:ab204751d1e7

Allow all expressions in array and list literals
author Mike Pavone <pavone@retrodev.com>
date Sat, 24 Aug 2013 09:53:20 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}