How do you replace existing operators without invoking them in Io?
For Eric Hogue (see question comments): origDiv := Number getSlot(“https://stackoverflow.com/”) 10 origDiv(5) println # => 2 10 origDiv(0) println # => inf Number / := method (i, if (i != 0, self origDiv(i), 0) ) (10 / 5) println # => 2 (10 / 0) println # => 0