Skip to content

Commit

Permalink
[src/core] Define ne in terms of !eq
Browse files Browse the repository at this point in the history
  • Loading branch information
unobe authored and colomon committed Mar 21, 2010
1 parent 0d10ff6 commit af16e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operators.pm
Expand Up @@ -193,7 +193,7 @@ our multi infix:<eq>($a, $b) {
}

our multi infix:<ne>($a, $b) {
pir::isne__ISS(~$a, ~$b) ?? True !! False
$a !eq $b
}

our multi infix:<lt>($a, $b) {
Expand Down

0 comments on commit af16e57

Please sign in to comment.