From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112131415 #!/usr/bin/perl -wuse Test;BEGIN { $| = 1; unshift @INC, '../blib/lib'; unshift @INC, '../blib/arch'; chdir 't' if -d 't'; plan tests => 1; };use Math::BigInt::FastCalc;ok(1); # could load it?
#!/usr/bin/perl -w
use
Test;
BEGIN
{
$| = 1;
unshift
@INC
,
'../blib/lib'
;
'../blib/arch'
chdir
't'
if
-d
plan
tests
=> 1;
};
Math::BigInt::FastCalc;
ok(1);
# could load it?