view samples/compilerbug_003.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 86ebdfb33711
children
line wrap: on
line source

{
	foo <- { 42 }
	#{
		qux <- foo:
		bar <- #{
			
			baz <- {
				foo:
			}
			
		}
		
		main <- {
			print: (string: (bar baz))
		}
	}
}