Change syntax of compound exprs
This commit is contained in:
24
order2.kl
Normal file
24
order2.kl
Normal file
@@ -0,0 +1,24 @@
|
||||
Str16 :: String16
|
||||
|
||||
arena_pointer: *Arena = null
|
||||
thing: Arena
|
||||
no_type := thing
|
||||
|
||||
Arena :: struct
|
||||
// arena: Arena
|
||||
next: *Arena
|
||||
data: *int
|
||||
len : int
|
||||
cap : int
|
||||
|
||||
string16: Str16
|
||||
|
||||
String16 :: struct
|
||||
data: *void
|
||||
len : int
|
||||
|
||||
with_type: Arena = thing
|
||||
pointer := &with_type
|
||||
deref := *pointer
|
||||
|
||||
|
||||
Reference in New Issue
Block a user