aboutsummaryrefslogtreecommitdiffstats
path: root/src/sexpr.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-10-23 17:44:52 -0700
committerBryan Newbold <bnewbold@robocracy.org>2021-10-23 17:44:52 -0700
commit410af116fe02f515a1741612721ccca41f187b45 (patch)
treecc49c71efc09a25dc30f878ab301864d1273b8bb /src/sexpr.rs
parentcf36381b394678bd528466c563c520517a916810 (diff)
downloadcasual-410af116fe02f515a1741612721ccca41f187b45.tar.gz
casual-410af116fe02f515a1741612721ccca41f187b45.zip
commit work-in-progress
Diffstat (limited to 'src/sexpr.rs')
-rw-r--r--src/sexpr.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sexpr.rs b/src/sexpr.rs
index 6cef563..da1012e 100644
--- a/src/sexpr.rs
+++ b/src/sexpr.rs
@@ -16,9 +16,9 @@ use std::path::Path;
//////////// Types and Constants
-const SEXPR_BUILTINS: [&'static str; 14] = [
+const SEXPR_BUILTINS: [&'static str; 15] = [
"=", ">", ">=", "<", "<=",
- "+", "-", "*", "/",
+ "+", "-", "*", "/", "^",
"exp", "log", "sin", "cos", "tan",
];