You can always manually add to Int
( $m.Int div $n.Int ).say;
In fact, I would hope that the prefix: <+> will work as in
( +$m div +$n ).say;
But these are just "Num" ifies, and sig requires "Int", I'm not sure if this should be so or not.
UPDATE: +$mnow works.
source
share