diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-09 21:18:48 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-09 21:18:48 +0300 |
commit | 8062ed87d30fa7628f26cfd7bb94bb0e7401752b (patch) | |
tree | 706bf5e34678622111a23c7045f667c1acbe7c6d /src/parse/parsetree.rs | |
parent | 3e1bf7f9946efe70d452c71494ac77ed39110804 (diff) | |
download | myslip-8062ed87d30fa7628f26cfd7bb94bb0e7401752b.tar.gz myslip-8062ed87d30fa7628f26cfd7bb94bb0e7401752b.zip |
Revert adding of print (its behavior was poorly designed).
This reverts commit 3e1bf7f9946efe70d452c71494ac77ed39110804.
Diffstat (limited to 'src/parse/parsetree.rs')
-rw-r--r-- | src/parse/parsetree.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parse/parsetree.rs b/src/parse/parsetree.rs index 8e2b856..75758dc 100644 --- a/src/parse/parsetree.rs +++ b/src/parse/parsetree.rs @@ -113,7 +113,6 @@ fn tokens_to_ast_inner( Some(Sym(s)) if s == "false" => Ok(Atom(False)), Some(Sym(s)) if s == "quote" => Ok(Atom(Quote)), Some(Sym(s)) if s == "vector" => Ok(Atom(Vector)), - Some(Sym(s)) if s == "print" => Ok(Atom(Print)), Some(Sym(s)) if s == "let" => Ok(Atom(Let)), Some(Sym(s)) => Ok(Atom(Var(s))), Some(ParClose) => break, |