summaryrefslogtreecommitdiff
path: root/test.toc
blob: ec20c2fc25b12f5bf55813494693031b6777c2b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
puti @= fn(x: int) {
	 #C("printf(\"%ld\\n\", (long)x);
");
};
putf @= fn(x: float) {
	 #C("printf(\"%f\\n\", (double)x);
");
};

// f @= fn(x @ int) Type {
// struct {
// a: [x]float;
// }
// };



pair @= fn(s @ Type) Type {
	 [2]s
};

main @= fn() {
x : pair(int);
y : pair(int);
z : pair(float);
x[0] = 7;
puti(x[0]);
z[0] = 3.3;
putf(z[0]);
};