Guest User

Untitled

a guest
Apr 26th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. INTEGER div(STATE, FIXNUM other) {
  2. native_int a = n2i() / other->n2i();
  3. if(a * other->n2i() != n2i() && a < 0 ) --a;
  4. return Object::i2n(state, a);
  5. }
Add Comment
Please, Sign In to add comment