new raku just hit: 2021.04.02

2021-05-02 Thread ToddAndMargo via perl6-users
Hi All, https://github.com/nxadm/rakudo-pkg/releases RakudoPkgFedora33-2021.04.02.x86_64.rpm Installed without incident :-) -T

Re: Comparing Int and Num

2021-05-02 Thread Fernando Santagata
Hi, I see in the include file that mpz_t is defined as follow: typedef __mpz_struct mpz_t[1]; and in turn __mpz_struct is: typedef struct { int _mp_alloc; int _mp_size; mp_limb_t *_mp_d; } __mpz_struct; with mp_lib_t defined in three different ways, according to the value of a macro, defi

Re: Comparing Int and Num

2021-05-02 Thread sisyphus
On Wed, Apr 28, 2021 at 5:38 PM Fernando Santagata < nando.santag...@gmail.com> wrote: > , > If you've found the Perl XS interface easy to work with, give Raku's > NativeCall a try, you will find it amazing. Since you already know the C > libraries, I guess you can cook an interface in no time. >