view samples/compilerbug_002.tp @ 250:c58e17f5c0f6

Added hash dictionary to dict module
author Michael Pavone <pavone@retrodev.com>
date Wed, 09 Apr 2014 22:55:10 -0700
parents 93ddb4ad6fcb
children
line wrap: on
line source

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