Description
Every once in a while I wish to have steps for some basic mathematical operations (add(), sub(), mul(), div()). Since sub(num) is the same as add(-num) and div(num) is the same as mul(1/num), we would only need two new step implementations.
Oh, and then there's also mod(), thus 3 new step implementations.