Added main.

This commit is contained in:
Marvin Blum
2015-10-25 16:57:00 +01:00
parent a1d7fc977e
commit 4471ae285e
9 changed files with 190 additions and 15 deletions

8
in/sub/sub.asl Normal file
View File

@@ -0,0 +1,8 @@
var x = 1;
var y = 3;
func foo(x, y) {
return x+y
}
hint()(format()("%1", foo(x, y)));