mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
7 lines
126 B
Plaintext
7 lines
126 B
Plaintext
(fun return_true true)
|
|
|
|
(fun main (do
|
|
(def name "John")
|
|
(if (return_true)
|
|
(print name)
|
|
(print "no")))) |