view samples/compilerbug_004.tp @ 141:15aac5334b64

Started work on replacing nodes with a symbol when a symbol button is clicked
author Mike Pavone <pavone@retrodev.com>
date Fri, 09 Aug 2013 01:36:53 -0700
parents 38127fbf5f9d
children
line wrap: on
line source

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

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

}