I think the use of % for the modulus operator is too deeply ingrained
to repurpose its infix incarnation.

I do quite like the magical postfix %, but I wonder how far it should
go beyond ±:

$x += 5%;   # becomes $x += ($x * .05)?  Or maybe $x *= 1.05  ?
$x * 5%;   # becomes $x * .05 ?

Reply via email to