[perl #130686] [BUG] div doesn't work right on large int values

2017-02-03 Thread Zoffix Znet via RT
On Tue, 31 Jan 2017 18:58:22 -0800, pe...@mscha.org wrote: > % perl6 > To exit type 'exit' or '^D' > > my int $i = 10**16; > 1 > > say $i; > 1 > > say $i div 4; > 468729856 > > say $i / 4; > 2500 > > This is on a 64-bit build, Rakudo Star 2017.01. T

[perl #130686] [BUG] div doesn't work right on large int values

2017-01-31 Thread via RT
# New Ticket Created by Michael Schaap # Please include the string: [perl #130686] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130686 > % perl6 To exit type 'exit' or '^D' > my int $i = 10**16; 1 > say $i;