Added in the beginnings of pass three which can parse and emit statements and code blocks

This commit is contained in:
Nathan Braswell
2016-01-07 02:52:22 -05:00
parent 337bc424ee
commit daae39fe19
6 changed files with 57 additions and 12 deletions

View File

@@ -7,10 +7,8 @@ obj Something (ObjectTrait) {
}
}
fun some_function(): float {
return 0
}
fun some_other_function(in: bool): int {
return 0
fun some_function(): int return 0;
fun some_other_function(in: bool): float {
return 0.0
}