summaryrefslogtreecommitdiff
path: root/test.toc
blob: 165b41f31f316b17e2ef3e278f5a797570b38303 (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);
");
};



// point ::= pkg "point";


main ::= fn() {
	 s ::= struct { x,y,z:int; f:f32; };
	 puti(#alignof(s));
	 puti(#sizeof(s));
	 
};
/*
something's wrong  (should be too few opening parentheses!)
main ::= fn() {
	 puti(#alignof(struct { x,y,z:int; f:f64; });
	 puti(#sizeof(struct { x,y,z:int; f:f64; });
	 
};
*/