Can parse variables

This commit is contained in:
2026-04-29 21:39:48 +02:00
parent 94ae665a0a
commit 0704284726
5 changed files with 108 additions and 15 deletions
+2 -2
View File
@@ -6,10 +6,10 @@ Global variables can be defined as such:
```c2
// Defines a global variable called my_var.
int32 my_var;
i32 my_var;
// Defines a const variable.
const int32 my_var;
const i32 my_var;
// Defines a global variable whose type is determined automatically.
// The value will be determined at runtime.