refactor and func -> proc rename

This commit is contained in:
2026-07-23 11:07:30 +02:00
parent 0338e35e75
commit ad54a00893
18 changed files with 317 additions and 311 deletions
+4 -1
View File
@@ -1,9 +1,11 @@
import "@source/strpool"
TokenKind :: enum {
if
else
for
while
func
proc
return
ident
@@ -28,4 +30,5 @@ TokenKind :: enum {
Token :: struct {
kind TokenKind
start int
str_id strpool.StringId = strpool.NoId
}