Feature: Tokenize Keywords #6
Notifications
Due Date
No due date set.
Blocks
#7 Feature: Lexer
j/Conlang
Reference: j/Conlang#6
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Feature Progress
else
for
fn
if
in
let
while
match
Feature description
Keywords are reserved identifiers with special meaning, which combine with other language elements to produce a unique effect.
Examples of keywords in other languages:
if
,else
,match
,switch
: conditional control flowfn
,let
: starts a declarationtry
: marks the next expression as potentially containing fallible elements...
Example
Feature: Keywordsto Feature: Tokenize KeywordsThe initial set of keywords will be:
🥳