ding
[cc1516.git] / examples / high.spl
1 plus(x, y) {
2 return x + y;
3 }
4
5 main (){
6
7 var f = plus();
8 return 5;
9 }