view modules/vec.tp @ 367:e2c1309ab750

Use dict hash instead of dict linear in JSON parser. Implement basic string escapes in JSON parser.
author Michael Pavone <pavone@retrodev.com>
date Sun, 09 Aug 2015 18:07:23 -0700
parents 860075fdc2d3
children
line wrap: on
line source

#{
	x:y <- :_x :_y {
		#{
			x <- _x
			y <- _y
		}
	}
	
	x:y:z <- :_x :_y :_z {
		#{
			x <- _x
			y <- _y
			z <- _z
		}
	}
	
	x:y:z:w <- :_x :_y :_z :_w {
		#{
			x <- _x
			y <- _y
			z <- _z
			w <- _w
		}
	}
}