view samples/compilerbug_005.tp @ 146:d8f92ebf1ff6

Fix string literal escaping to allow more than one of each type of escaped character
author Mike Pavone <pavone@retrodev.com>
date Fri, 09 Aug 2013 04:29:37 -0700
parents ba032565c7a5
children
line wrap: on
line source

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