view src/requsets.tp @ 12:7d8b8f82cbef

Help Bill work around some compiler bugs
author Mike Pavone <pavone@retrodev.com>
date Fri, 09 Aug 2013 02:35:37 -0700
parents 79c1db5e7ebd
children 6de264ba8eb3
line wrap: on
line source

#{
	eval <- :args {
		#{
			id <- "a"
			arguments <- args
			string <- {
				id . "derp"
			}
		}
	}

	main <- {
		print: (eval string)
	}
}