view modules/vec.tp @ 361:06dceff348ea

llcompile now has Hacky support for calling C functions using dl to lookup symbols and almost has support string constants
author Michael Pavone <pavone@retrodev.com>
date Thu, 23 Apr 2015 19:24:20 -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
		}
	}
}