Improved language design

This commit is contained in:
2021-08-14 16:43:48 +02:00
parent c909ce31d8
commit 62f8e86409
2 changed files with 4 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ class Keywords(Enum):
Length = 'length'
Range = 'range'
Exit = 'exit'
ForEach = 'forEach'
# normal keywords
If = 'if'
@@ -28,6 +29,7 @@ class Keywords(Enum):
# loops
While = 'while'
For = 'for'
Foreach = 'foreach'
# access
Public = 'public'