Arc Forumnew | comments | leaders | submitlogin
6 points by bogomipz 5920 days ago | link | parent

You could use this, though;

  (if (~expr1)
        (...)
      (~expr2)
        (...))


1 point by raymyers 5920 days ago | link

True, though that only works for function calls -- not variables: (if (no li) ...)

-----