Skip to content

Commit

Permalink
uncomment out file, make it compile
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Jun 13, 2013
1 parent 1f25c4c commit e552619
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/Partcl/Operators.pm
@@ -1,9 +1,7 @@
=begin operators
sub &infix:<==>($a, $b) {
# Try to do a numeric compare first (XXX this is integer for now)
try {
return pir::set__iP($a) == pir::set__iP($b);
return +$a == +$b;
CATCH {
# Not numeric. Try as string...
return $a eq $b;
Expand All @@ -30,6 +28,4 @@ sub &infix:<in>($check, @list) {
return 0;
}

=end operators

# vim: expandtab shiftwidth=4 ft=perl6:

0 comments on commit e552619

Please sign in to comment.