push forward. Current problem is double closed things

This commit is contained in:
Nathan Braswell
2017-06-21 02:12:00 -04:00
parent 18c53eb9be
commit bdb9e313b5
7 changed files with 86 additions and 3 deletions

15
quick_test.krak Normal file
View File

@@ -0,0 +1,15 @@
fun first():int { return 12; }
fun test(f: run():int):int {
return test2(fun():int { return f();})
}
fun test2(f: fun():int):int {
return f()
}
fun main():int {
/*return test(first)*/
return 0
}