view samples/compilerbug_004.tp @ 221:218b11ec8fa2

Better handling for weird values being inserted into AST due to quoting
author Michael Pavone <pavone@retrodev.com>
date Sun, 29 Dec 2013 13:07:10 -0800
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}