From 4c7ed5a8eff6888c1ad4e3af693ca7e7c2de1e6e Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Tue, 17 May 2022 17:30:33 -0400 Subject: [PATCH] Update reserved words list --- src/ludus/scanner.clj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ludus/scanner.clj b/src/ludus/scanner.clj index ee5c378..3863585 100644 --- a/src/ludus/scanner.clj +++ b/src/ludus/scanner.clj @@ -16,24 +16,24 @@ "false" ::token/false ;; impl "fn" ::token/fn ;; impl "if" ::token/if ;; impl - "import" ::token/import + "import" ::token/import ;; impl "let" ::token/let ;; impl + "loop" ::token/loop "match" ::token/match ;; impl - "mut" ::token/mut "nil" ::token/nil ;; impl + "ns" ::token/ns ;; impl + "recur" ::token/recur "ref" ::token/ref "then" ::token/then ;; impl "true" ::token/true ;; impl - "var" ::token/var "with" ::token/with ;; impl ;; below here, probable "defer" ::token/defer "gen" ::token/gen - "loop" ::token/loop - "ns" ::token/ns - "recur" ::token/recur + "mut" ::token/mut "repeat" ::token/repeat "test" ::token/test + "var" ::token/var "wait" ::token/wait "yield" ::token/yield ;; below here, possible