Implemented switch statements

This commit is contained in:
2024-08-03 22:24:40 +02:00
parent d07b455f67
commit dbf416d45b
10 changed files with 170 additions and 27 deletions

View File

@ -151,6 +151,8 @@ func Tokenize(buffer []byte) List {
kind = Loop
case "return":
kind = Return
case "switch":
kind = Switch
}
tokens = append(tokens, Token{Kind: kind, Position: position, Length: Length(len(identifier))})