view samples/compilerbug_005.tp @ 106:76a21129e8f5

Added new bubble and capture mquery functions from the spreadsheet project.
author Mike Pavone <pavone@retrodev.com>
date Fri, 12 Apr 2013 19:25:54 -0700
parents ba032565c7a5
children
line wrap: on
line source

#{
	foo <- { "foobar" }
	bar <- #{
		baz <- {
			print: foo
		}
	}
	main <- {
		print: foo
		bar baz
	}
}