blob: f3d21d9fab8b2b672692e2b8c8df4a089b2724f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
(debuglog "Hello, World, here is an atom:" :iamanatom)
(defun myfun (var) (debuglog var))
(myfun :myfunworks)
((lambda (a) (debuglog a)) :atom)
(debuglog a)
(def helloworld (pure "hello world"))
(debuglog helloworld (helloworld))
(defun + () (seq
(debuglog "also multiplication")
(debuglog "addition")))
(debuglog +)
|