Basic call expression and fix to assignment count checking

This commit is contained in:
gingerBill
2016-08-03 22:27:36 +01:00
parent 0e92166d44
commit 19aea1f198
11 changed files with 332 additions and 226 deletions
+4 -2
View File
@@ -1,5 +1,7 @@
add :: proc(x, y : int) -> (int, int) {
return x+y, 1;
}
main :: proc() {
a : [16]int;
b := a[0:1:2];
}