Improved language design

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

View File

@ -18,6 +18,7 @@ class LanguageDefinition:
Keywords.Length.value,
Keywords.Range.value,
Keywords.Exit.value,
Keywords.ForEach.value,
# normal keywords
Keywords.If.value,
Keywords.ElseIf.value,
@ -28,6 +29,7 @@ class LanguageDefinition:
# loops
Keywords.While.value,
Keywords.For.value,
Keywords.Foreach.value,
# access
Keywords.Public.value,
Keywords.This.value

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'