Arc Forumnew | comments | leaders | submitlogin
1 point by mec 5866 days ago | link | parent

If you're trying to debug print the value of a variable can't you do:

  arc> (let x 4
         (+ 1 2
            (/ prn.x 3)
            (/ 7 6)))
  4
  11/2
As long as print returns the the value it prints (and it appears to) this should work fine.