1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 09:27:35 +00:00
bobbylisp/example/if.blsp

4 lines
113 B
Plaintext
Raw Normal View History

(fun print_true (print "True"))
(fun print_false (print "False"))
2022-02-01 19:57:35 +00:00
(fun main
(if true print_true print_false))