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

@@ -2,6 +2,9 @@ import mem
import vector
import serialize
// maybe my favorite function
fun do_nothing() {}
fun max<T>(a: T, b: T): T {
if (a > b)
return a;