comparison modules/vec.tp @ 327:860075fdc2d3

Add the beginning of a vector module
author Michael Pavone <pavone@retrodev.com>
date Tue, 24 Mar 2015 23:13:13 -0700
parents
children
comparison
equal deleted inserted replaced
326:50760ba52b11 327:860075fdc2d3
1 #{
2 x:y <- :_x :_y {
3 #{
4 x <- _x
5 y <- _y
6 }
7 }
8
9 x:y:z <- :_x :_y :_z {
10 #{
11 x <- _x
12 y <- _y
13 z <- _z
14 }
15 }
16
17 x:y:z:w <- :_x :_y :_z :_w {
18 #{
19 x <- _x
20 y <- _y
21 z <- _z
22 w <- _w
23 }
24 }
25 }