1(set! symbol? (lambda (x) (equal (type x) "SYMB")))
5 "`(defun name arg-list forms...)`: Define an interpreted Lambda function with this `name` and this `arg-list`, whose body is comprised of these `forms`."
7 (eval (list 'set! (car form) (cons 'lambda (cdr form))))))
9(defun! square (x) (* x x))
14 (cond (symbol? (car form))
15 (set! (car form) (apply nlambda (cdr form))))))
17(defun! cube (x) (* x x x))
21(square 5) ;; should work
23(square p) ;; should work
25(cube 5) ;; should work
27(cube p) ;; should fail: unbound symbol