summaryrefslogtreecommitdiff
path: root/doc/main.nxs
blob: cb6985de6937fb6a53220d8980a33d64be53a33f (plain)
1
2
3
4
5
6
7
8
9
(include "fib.nxs")

(bind factorial (lambda (n)
	(if (= n 0) 1 (* n (factorial (- n 1))))))

(print (fib 7))
(print (+ (factorial 5) 10))

(print (quote (+ (3 2) 4)))