Remove duplicated function '/=' in Long.carp

This commit is contained in:
Erik Svedäng 2017-11-14 22:30:21 +01:00
parent b8638f3920
commit 39c405bfb6
2 changed files with 0 additions and 2 deletions

View File

@ -6,7 +6,6 @@
(register < (λ [Long Long] Bool))
(register > (λ [Long Long] Bool))
(register = (λ [Long Long] Bool))
(register /= (λ [Long Long] Bool))
(register mod (λ [Long Long] Long))
(register seed (λ [Long] ()))
(register random (λ [] Long))

View File

@ -60,7 +60,6 @@ long Long__MINUS_(long x, long y) { return x - y; }
long Long__MUL_(long x, long y) { return x * y; }
long Long__DIV_(long x, long y) { return x / y; }
bool Long__EQ_(long x, long y) { return x == y; }
bool Long__DIV__EQ_(long x, long y) { return x != y; }
bool Long__LT_(long x, long y) { return x < y; }
bool Long__GT_(long x, long y) { return x > y; }