view samples/hash.tp @ 242:0e7982adc76b

Make the successful return value from a match expression be truthy and the failure value false. This avoids an extra method call when checking the result and avoids allocating a new object when a match fails.
author Mike Pavone <pavone@retrodev.com>
date Sun, 05 Jan 2014 20:56:25 -0800
parents 7f635666c73d
children 2a0463c46913
line wrap: on
line source

#{
	main <- {
		print: "hash of 'foo' is " . ("foo" hash) . "\n"
		print: "hash of 'bar' is " . ("bar" hash) . "\n"
		print: "hash of 'foobar' is " . ("foobar" hash) . "\n"
		print: "hash of 1 is " . (1 hash) . "\n"
		print: "hash of 2 is " . (2 hash) . "\n"
		print: "hash of 3 is " . (3 hash) . "\n"
	}
}