|
This post was updated on .
On page 150, example code for a naive multiplication function is shown. The text explains that !(i<y) is implemented as push i, push y, lt, <b>ng while figure 8.1 below shows push i, push y, lt, neg.
I think that the correct operation would actually be 'not', since its argument is the boolean result of lt.
|