view samples/compilerbug_003.tp @ 288:a4c2b31acba7

Add utf8 method to integer types for converting a number into a utf8 string made up of the corresponding character code
author Michael Pavone <pavone@retrodev.com>
date Tue, 22 Jul 2014 21:31:41 -0700
parents 86ebdfb33711
children
line wrap: on
line source

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