Re: 2020.07 just hit

2020-07-21 Thread daniel
> $ raku --version > This is Rakudo version 2020.07 built on MoarVM version 2020.07 > implementing Raku 6.d. > Whats is new?? Release notes are at https://github.com/rakudo/rakudo/blob/master/docs/announce/2020.07.md I'm most excited for new the Unicode operators, ≡ and ≢ (though the

Re: Baby steps to create a dataframe structure

2020-07-21 Thread Aureliano Guedes
Then, a native call to R may be better cus bring us dataframe an a lot of statistical functions natively without other R's package. But the idea is to implement cooperatively those tools. On Tue, Jul 21, 2020 at 10:33 PM Tom Browder wrote: > On Tue, Jul 21, 2020 at 20:00 Warren Pang wrote: >

Re: Baby steps to create a dataframe structure

2020-07-21 Thread Tom Browder
On Tue, Jul 21, 2020 at 20:00 Warren Pang wrote: > I have the same feeling. Perl5 has PDL which we have been using for data > analysis. While Raku seems to lack this. > I haven't looked into how it might work, but Raku does have the NativeCall interface as well as Inline::Perl5 which may help.

Re: Baby steps to create a dataframe structure

2020-07-21 Thread Warren Pang
I have the same feeling. Perl5 has PDL which we have been using for data analysis. While Raku seems to lack this. Regards. On Wed, Jul 22, 2020 at 7:42 AM Aureliano Guedes wrote: > Hi all, > > I'd like to learn Raku deep enough to build a data structure. I have > experience with Perl5,

Re: I cannot install any lib with Zef

2020-07-21 Thread William Michels via perl6-users
Hello Aureliano, What happens if you try either of the lines below (without the quotes or version number): $ zef install Digest::SHA256::Native $ zef upgrade Digest::SHA256::Native Additionally, we may need some more information from you--specifically which operating system you're on. I

Baby steps to create a dataframe structure

2020-07-21 Thread Aureliano Guedes
Hi all, I'd like to learn Raku deep enough to build a data structure. I have experience with Perl5, Python, R, and even C/C++, then I get boring feelings to learn something new from the beginning. Also, I prefer learning a new language by applying f to something. Since I work with data analysis

Re: I cannot install any lib with Zef

2020-07-21 Thread Timo Paulssen
I would assume the ffi, tommath, atomic_ops, and uv linker flags come straight from moarvm's linker flags, probably because the build script of Digest::SHA256::Native uses the flags used to compile moarvm itself. If you've compiled your moarvm yourself, this is a safe bet; these libraries are

Re: 2020.07 just hit

2020-07-21 Thread Aureliano Guedes
$ raku --version This is Rakudo version 2020.07 built on MoarVM version 2020.07 implementing Raku 6.d. Whats is new?? On Tue, Jul 21, 2020 at 6:21 PM ToddAndMargo via perl6-users < perl6-users@perl.org> wrote: > GetRaku new update downloaded 2020.06 --> 2020.07 > -- Aureliano Guedes

2020.07 just hit

2020-07-21 Thread ToddAndMargo via perl6-users
GetRaku new update downloaded 2020.06 --> 2020.07

Re: BUILD and TWEAK

2020-07-21 Thread Vadim Belman
Oh, and the thing I forgot to mention: contrary to BUILD and TWEAK, DESTROY is invoked by underlying backend VM. I.e. by MoarVM, or JVM, or JS because only the VM knows when exactly an object cease to exists. Best regards, Vadim Belman > On Jul 21, 2020, at 4:53 AM, Richard Hainsworth >

Re: BUILD and TWEAK

2020-07-21 Thread Vadim Belman
> On Jul 21, 2020, at 4:53 AM, Richard Hainsworth > wrote: > > Trying to update the documentation on submethod TWEAK - there is nothing. > > But the documentation should be accurate and not confusing. So some questions: > > In a loop or program, things like BUILD or LEAVE or FIRST are

Re: Pod6 examples

2020-07-21 Thread Parrot Raiser
Thanks, Richard and daniel. On 7/21/20, Richard Hainsworth wrote: > How about: > > https://github.com/Raku/doc/tree/master/doc/Language/pod.pod6 > > which is the pod source of https://docs.raku.org/language/pod > > Also try the other sources under the >

Re: Pod6 examples

2020-07-21 Thread JJ Merelo
El mar., 21 jul. 2020 a las 17:23, Richard Hainsworth (< rnhainswo...@gmail.com>) escribió: > How about: > > https://github.com/Raku/doc/tree/master/doc/Language/pod.pod6 > > which is the pod source of https://docs.raku.org/language/pod This page is also intended as a tutorial. If there's

Re: Pod6 examples

2020-07-21 Thread daniel
> Can anyone point me at examples of pod6 in use?… Concise would be nice, One concise example I've found useful is the Pod::Load script, https://modules.raku.org/dist/Pod::Load:cpan:JMERELO/lib/Pod/Load.pm6 This short script shows pod6 used both as a more full-featured documentation format (the

Re: Pod6 examples

2020-07-21 Thread Richard Hainsworth
How about: https://github.com/Raku/doc/tree/master/doc/Language/pod.pod6 which is the pod source of https://docs.raku.org/language/pod Also try the other sources under the https://github.com/Raku/doc/tree/master/doc directory. Richard On 21/07/2020 15:40, Parrot Raiser wrote: Can anyone

Pod6 examples

2020-07-21 Thread Parrot Raiser
Can anyone point me at examples of pod6 in use? I'm trying to relate the syntax shown in https://docs.raku.org/language/pod to actual results. Concise would be nice, tutorial even better.

Re: subs and the type system

2020-07-21 Thread Theo van den Heuvel
Given that the signature is going to be more complex, it would be helpful if I do not need to repeat it for every member of the Walkable class. I tried using a constant to represent the signature so that I can create new Walkables without having to spell it out. Here is my code attempt (not

BUILD and TWEAK

2020-07-21 Thread Richard Hainsworth
Trying to update the documentation on submethod TWEAK - there is nothing. But the documentation should be accurate and not confusing. So some questions: In a loop or program, things like BUILD or LEAVE or FIRST are called 'phasers'. By analogy, during the 'build' process of instantiating

Re: recent perl6 book

2020-07-21 Thread Warren Pang
Thank you a lot JJ. On Tue, Jul 21, 2020 at 3:11 PM JJ Merelo wrote: > I would obviously suggest my own book > https://www.apress.com/gp/book/9781484249550, Perl 6 Quick Syntax > Reference, published last October. > And we'll have to try and find a way to update that file... > > El mar., 21

Re: recent perl6 book

2020-07-21 Thread JJ Merelo
OK, it's right there, at the bottom https://github.com/moritz/perl6book-web El mar., 21 jul. 2020 a las 9:11, JJ Merelo () escribió: > I would obviously suggest my own book > https://www.apress.com/gp/book/9781484249550, Perl 6 Quick Syntax > Reference, published last October. > And we'll have

Re: recent perl6 book

2020-07-21 Thread JJ Merelo
I would obviously suggest my own book https://www.apress.com/gp/book/9781484249550, Perl 6 Quick Syntax Reference, published last October. And we'll have to try and find a way to update that file... El mar., 21 jul. 2020 a las 4:02, Warren Pang () escribió: > Greetings, > > Would you suggest a