view modules/vec.tp @ 341:6871e72b6db2

Added int64 message to string type
author Michael Pavone <pavone@retrodev.com>
date Sun, 05 Apr 2015 22:48:59 -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
		}
	}
}