Help for this page
sub infix:<foo> ($lhs, $rhs) { dd $lhs }; sub infix:<in> ($lhs, @rhs) { dd @rhs }; 1 foo 2; 3 in [3,4];
$lhs = 1 @rhs = [3, 4]