From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213 # -*- mode: perl; -*-# check that requiring Math::BigInt and then calling from_base_num() worksuse strict;use warnings;use Test::More tests => 1;require Math::BigInt;my $x = Math::BigInt -> from_base_num([1], 10);is($x, 1, '$x is 1');
# -*- mode: perl; -*-
# check that requiring Math::BigInt and then calling from_base_num() works
use
strict;
warnings;
Test::More
tests
=> 1;
require
Math::BigInt;
my
$x
= Math::BigInt -> from_base_num([1], 10);
is(
, 1,
'$x is 1'
);