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

@@ -1,6 +1,7 @@
ext fun malloc(size: ulong): *void
ext fun free(size: *void)
ext fun memmove(dest: *void, src: *void, size: ulong): *void
fun null<T>(): *T
return (0) cast *T