aboutsummaryrefslogtreecommitdiff
path: root/eval.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval.cpp')
-rw-r--r--eval.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/eval.cpp b/eval.cpp
index 229d321..0b9150e 100644
--- a/eval.cpp
+++ b/eval.cpp
@@ -24,6 +24,8 @@ void Evaluator::add_builtin_routines() {
ADD_ENTRY("and", new SpecialOptAnd());
ADD_ENTRY("or", new SpecialOptOr());
ADD_ENTRY("apply", new SpecialOptApply());
+ ADD_ENTRY("delay", new SpecialOptDelay());
+ ADD_ENTRY("force", new SpecialOptForce());
ADD_BUILTIN_PROC("+", num_add);
ADD_BUILTIN_PROC("-", num_sub);