Implmented structs in the kraken interpreter! (nothing object-y implemented yet)

This commit is contained in:
Nathan Braswell
2016-05-15 18:36:13 -07:00
parent 029d44ac81
commit 2dd381f7ea
4 changed files with 67 additions and 13 deletions

View File

@@ -50,8 +50,6 @@ fun print(toPrint: double) {
}
fun print<T>(toPrint: T): void
print(string::to_string(toPrint))
/*fun print(toPrint: ulong): void */
/*print(string::to_string(toPrint))*/
// Ok, just some DEAD simple file io for now
ext fun fopen(path: *char, mode: *char): *void