Arc Forumnew | comments | leaders | submitlogin
3 points by drcode 5891 days ago | link | parent

right- as I mentioned in the other comment, this is less cumbersome with "drain"

  (= a 0)
  
  (drain (do (pr ++.a)
             (isnt a 8)))


3 points by almkglor 5890 days ago | link

shorter thus:

  (drain:do
    (pr ++.a)
    (isnt a 8))

-----