More work on types

This commit is contained in:
Krzosa Karol
2022-06-03 16:06:33 +02:00
parent 14af46125d
commit 25820a0c5b
4 changed files with 53 additions and 38 deletions

View File

@@ -18,7 +18,7 @@ Arena :: struct
// arena: Arena
next: *Arena
data: *Int
len : Int
len : S64
cap : Int
Sub :: struct
@@ -26,7 +26,7 @@ Arena :: struct
Sub_Sub :: struct
len: Int
get_len :: (s: *Arena): Int // @todo
get_len :: (s: *Arena): S64 // @todo
return s.next.len
constant_inside :: 10000