# New Ticket Created by "Kyle Hasselbacher" # Please include the string: [perl #61920] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61920 >
I didn't see division in with the other "basic math ops", so... Index: languages/perl6/t/00-parrot/02-op-math.t =================================================================== --- languages/perl6/t/00-parrot/02-op-math.t (revision 34835) +++ languages/perl6/t/00-parrot/02-op-math.t (working copy) @@ -4,7 +4,7 @@ use v6; -say '1..14'; +say '1..15'; print 'ok '; say 0 + 1; @@ -42,3 +42,7 @@ say -(-13); print 'ok '; say abs -14; + +# 15 +print 'ok '; +say 30 / 2;