FunStmt and Stmts added
[cc1516.git] / examples / codeGen.spl
1 f(x, y) {
2 return x;
3 }
4
5 main() {
6 Int x1 = 1;
7 x1 = 5;
8 f(x1, 2);
9 return x1;
10 }