More work on calls and compound statements

This commit is contained in:
Krzosa Karol
2022-05-30 13:22:57 +02:00
parent b2d3e9d8e1
commit 3a97e739a8
7 changed files with 73 additions and 36 deletions

View File

@@ -22,8 +22,8 @@ pointer := &with_type
deref := *pointer
arena := Arena(
next = 0,
data = 0,
next = null,
data = null,
len = 1000,
cap = 1000,
)