view samples/compilerbug_004.tp @ 236:c463a891ccd3

Support reading files larger than 1024 bytes in parser module
author Michael Pavone <pavone@retrodev.com>
date Fri, 03 Jan 2014 22:13:34 -0800
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}