view samples/compilerbug_002.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 93ddb4ad6fcb
children
line wrap: on
line source

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