view samples/compilerbug_004.tp @ 112:c0cf9444cf88

Add quotes to strings in editor
author Mike Pavone <pavone@retrodev.com>
date Sun, 14 Apr 2013 18:16:03 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}