RosettaCodeData/Task/Conditional-structures/Clojure/conditional-structures-2.clj

5 lines
150 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(when x
(print "hello")
(println " world")
5) ; when x is logical true, prints "hello world" and returns 5; otherwise does nothing, returns nil