view samples/compilerbug_003.tp @ 121:1a4446f573d3

Add isInteger? method to the int32 type in the C backend
author Mike Pavone <pavone@retrodev.com>
date Thu, 01 Aug 2013 19:10:48 -0700
parents 86ebdfb33711
children
line wrap: on
line source

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