view samples/testdict.tp @ 231:e48c74a7539e

Fix string parsing in grammar and add it to the primlitsym rule. Add parentheses expressions. Allow parsing from a file.
author Michael Pavone <pavone@retrodev.com>
date Thu, 02 Jan 2014 22:49:51 -0800
parents 6735db9b44ba
children
line wrap: on
line source

#{
	main <- {
		foo <- dict linear:
		foo set: "key1" "val1"
		foo set: "key2" "val2"
		foreach: foo :k :v {
			print: k . ", " . v . "\n"
		}

	}
}