Merge branch 'master' of https://github.com/dopefishh/cc1516
[cc1516.git] / examples / 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 var a = equal(1, 2);
5
6 equal(x, y)
7 {
8 return x == y;
9 }