60 PicoLisp Functions You Should Know - 4: Control Flow
Conditonal Statements
Next, we will explore conditional statements. Let's start with the if statement. It is quite straightforward:
: (if (> 4 3) (println 'OK) (println 'Bad))
OK
-> OK
First comes the condition, then what is supposed to happen if the...
picolisp-explored.com4 min read