say 4 ≤ 5; # True say 4 ≤ 4; # True say 4 ≤ 3; # False say 4 <= 5; # True say 4 <= 4; # True say 4 <= 3; # False
say &infix:« ≤ » =:= &infix:« <= »; # True
The line which creates this equivalence is the following:
my constant &infix:<≤> := &infix:«<=»;
The line which creates this equivalence is the following:
https://github.com/rakudo/rakudo/blob/b0dd44b006dc44da5695b2...