fork download
  1.  
  2. (print
  3. (cond (= 0 1) "I'm paired with a false expression and I don't evalute.."
  4. (= 1 1) "I'm the first expression paired with a true expression!"
  5. (= 2 2) "I don't evalute even though I'm also paired with true ;_;"
  6. :else "I evaluate if no other boolean expressions evaluate to true"))
Success #stdin #stdout 0.95s 4386816KB
stdin
Standard input is empty
stdout
I'm the first expression paired with a true expression!