summaryrefslogtreecommitdiff
path: root/test.toc
blob: 473e442bb777decbe79895ccf01104f158d1e562 (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
// 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;
// }
// };



f @= fn(s @ Type) Type {
t @= int;
t
};

main @= fn() {
x : f(int);
y : f(int);
z : f(float);
};