From abd2d7e5f89084eb83f6ec4a930b0c4b1e63669a Mon Sep 17 00:00:00 2001 From: able Date: Sun, 11 Apr 2021 14:18:41 -0500 Subject: [PATCH] more fixes --- {able-lang-test => able-script-test}/function.able | 0 {able-lang-test => able-script-test}/hello_world.able | 0 src/tokens.rs | 3 +++ 3 files changed, 3 insertions(+) rename {able-lang-test => able-script-test}/function.able (100%) rename {able-lang-test => able-script-test}/hello_world.able (100%) diff --git a/able-lang-test/function.able b/able-script-test/function.able similarity index 100% rename from able-lang-test/function.able rename to able-script-test/function.able diff --git a/able-lang-test/hello_world.able b/able-script-test/hello_world.able similarity index 100% rename from able-lang-test/hello_world.able rename to able-script-test/hello_world.able diff --git a/src/tokens.rs b/src/tokens.rs index 1e24f71..4478e2d 100644 --- a/src/tokens.rs +++ b/src/tokens.rs @@ -10,4 +10,7 @@ pub enum tokens { BOOLEAN, // True, False ABOOLEAN, // Always, Sometimes, Never PRINT, // Prints the preceding things + + MELO, + TDARK, }