Incorporate C library function into Perl6 with NativeCall
问题 I am attempting to use lgamma from C's math.h in Perl6. How can I incorporate this into Perl6? I have tried use NativeCall; sub lgamma(num64 --> num64) is native(Str) {}; say lgamma(3e0); my $x = 3.14; say lgamma($x); This works for the first number (a Str ) but fails for the second, $x , giving the error: This type cannot unbox to a native number: P6opaque, Rat in block <unit> at pvalue.p6 line 8 I want to do this very simply, like in Perl5: use POSIX 'lgamma'; and then lgamma($x) but I don