Added indirection to types in prep for function calls, full passthrough, and the first real hello world

This commit is contained in:
Nathan Braswell
2016-01-10 18:26:31 -05:00
parent 7f20a42178
commit 5db0365a63
7 changed files with 82 additions and 45 deletions

View File

@@ -11,4 +11,8 @@ fun some_function(): int return 0;
fun some_other_function(in: bool): float {
return 0.0
}
fun main(): int {
simple_print("Hello World!")
return 0
}