view samples/compilerbug_004.tp @ 67:42d5660b30b4

added remainder operator
author William Morgan <bill@mrgn.org>
date Sat, 14 Jul 2012 13:31:05 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}