view samples/compilerbug_004.tp @ 244:ae5188be523e

Improve compatibility of new parser with the old one
author Mike Pavone <pavone@retrodev.com>
date Mon, 06 Jan 2014 00:48:19 -0800
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}