Arc Forumnew | comments | leaders | submitlogin
2 points by CatDancer 5435 days ago | link | parent

suppressing the warning doesn't appear to be necessary with =

  arc> (def foo () 3)
  #<procedure: foo>
  arc> (= foo 4)
  4
  arc>


1 point by absz 5434 days ago | link

I was wondering if that was necessary... I think redef used to use set, which is why it was there.

-----