demo
[cc1516.git] / examples / old / Markus / overloading.spl
1 // At this point you maybe don't see what the problem is.
2 // Wait until you try to implement your code generator.
3
4 equal(x, y)
5 {
6 return x == y;
7 }
8
9 a() {return equal(1, 2);}
10
11 main() {return;}