u
[cc1516.git] / examples / codeGen.spl
1 f() {
2 return 2;
3 }
4 main() {
5 var x = 3;
6 return 1 + 2 + x + f();
7 }