Add multi pointers to core

This commit is contained in:
gingerBill
2021-08-21 23:16:14 +01:00
parent 932f330a51
commit 18a0fa02c5
7 changed files with 111 additions and 33 deletions
+3
View File
@@ -203,6 +203,9 @@ print_type :: proc "contextless" (ti: ^Type_Info) {
print_string("^");
print_type(info.elem);
}
case Type_Info_Multi_Pointer:
print_string("[^]");
print_type(info.elem);
case Type_Info_Procedure:
print_string("proc");
if info.params == nil {