view samples/compilerbug_004.tp @ 192:a868a2aec930

Add contains? method to linear dictionary
author Mike Pavone <pavone@retrodev.com>
date Mon, 26 Aug 2013 19:50:17 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}