view samples/compilerbug_004.tp @ 327:860075fdc2d3

Add the beginning of a vector module
author Michael Pavone <pavone@retrodev.com>
date Tue, 24 Mar 2015 23:13:13 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}