new raku just hit: 2021.05

2021-05-25 Thread ToddAndMargo via perl6-users
GetRaku new update downloaded 2021.04.02 --> 2021.05 https://github.com/nxadm/rakudo-pkg/releases No idea what changed

Re: File::Find using a junction with exclude

2021-05-25 Thread Andy Bach
> It's a bug in the REPL. The example from the documentation works when fed to the compiler directly So is the error Cannot find method 'qast' on object of type NQPMu any use in finding the REPL bug? From: William Michels via perl6-users Sent: Tuesday, May 25, 20

Re: File::Find using a junction with exclude

2021-05-25 Thread William Michels via perl6-users
Well spotted, Gianni! user@mbook:~$ raku -e 'my int $x = 2โถยณ-1;say ++$x;' -9223372036854775808 user@mbook:~$ raku --version Welcome to ๐‘๐š๐ค๐ฎ๐๐จโ„ข v2020.10. Implementing the ๐‘๐š๐ค๐ฎโ„ข programming language v6.d. Built on MoarVM version 2020.10. On Tue, May 25, 2021 at 8:38 AM Gianni Ceccarelli wrote: >

Re: File::Find using a junction with exclude

2021-05-25 Thread Gianni Ceccarelli
On Tue, 25 May 2021 15:16:03 + Andy Bach wrote: > > However I had to use "Int" instead of "int": > Ah, "int" is the "lower" level, native integer and "Int" is the raku. > An "int" is immutable or something? It's a bug in the REPL. The example from the documentation works when fed to the comp

Re: File::Find using a junction with exclude

2021-05-25 Thread Andy Bach
> However I had to use "Int" instead of "int": Ah, "int" is the "lower" level, native integer and "Int" is the raku. An "int" is immutable or something? The page https://docs.raku.org/language/numerics#Native_numerics has: my int $x = 2โถยณ-1; say $x; # OUTPUT: ยซ9223372036854775807โคยป s