Work on creating the call function

This commit is contained in:
Nathan Braswell
2017-04-13 01:05:36 -04:00
parent a0c040da36
commit 524247d0d1
2 changed files with 44 additions and 17 deletions

7
test_function_value.krak Normal file
View File

@@ -0,0 +1,7 @@
fun main(argc: int, argv: **char): int {
var a = fun(): int { return 1; }
a()
return 0
}