view samples/compilerbug_004.tp @ 135:f98790d8a53d

Add int64, int16 and int8. Also add hex method to integer types.
author Mike Pavone <pavone@retrodev.com>
date Thu, 08 Aug 2013 20:03:15 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}