summaryrefslogtreecommitdiff
path: root/doc/main.nxs
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-01-07 09:54:40 -0800
committerPreston Pan <preston@nullring.xyz>2023-01-07 09:54:40 -0800
commit4581329cde6cfb64399be48f58d67310ab19ee1b (patch)
treec76893896ae4375c618ecffad71fa9ffb3717be2 /doc/main.nxs
parentc620d528fb9d9efbac559002d23857623e71df05 (diff)
include working
Diffstat (limited to 'doc/main.nxs')
-rw-r--r--doc/main.nxs5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/main.nxs b/doc/main.nxs
index 212f098..76fc95f 100644
--- a/doc/main.nxs
+++ b/doc/main.nxs
@@ -1,6 +1,5 @@
-
+(include "fib.nxs")
(bind factorial (lambda (n)
(if (= n 0) 1 (* n (factorial (- n 1))))))
-
+(fib 7)
(+ (factorial 5) 10)
-"hello world!"