view samples/bitwise.tp @ 338:1458c069c715

Added "value" method to option value and option none. It behaves similarly to value:none, except the none case just propagates the none value and the value case wraps the result in an option value
author Michael Pavone <pavone@retrodev.com>
date Sat, 04 Apr 2015 11:54:46 -0700
parents 4c7c3d3e0265
children
line wrap: on
line source

#{
	main <- {
		a <- 0x42
		b <- 0x7A
		print: "a or b = " . (string: a or b) . "\n"
		print: "a and b = " . (string: a and b) . "\n"
		print: "a xor b = " . (string: a xor b) . "\n"
		print: "lshift: a by: 3 = " . (string: (lshift: a by: 3)) . "\n"
		print: "rshift: b by: 1 = " . (string: (rshift: b by: 1)) . "\n"
	}
}