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