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



main @= fn() {

t @= struct {
  A: int;
  b: int;
};
u @= t;
x : t;
	 y : u = x;

};