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

12
quick_test3.krak Normal file
View File

@@ -0,0 +1,12 @@
fun main():int {
var I = 0
fun() {
fun() {
I = 1
}()
}()
return 0
}