The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213 # -*- mode: perl; -*-# check that requiring Math::BigInt and then calling from_bin() worksuse strict;use warnings;use Test::More tests => 1;require Math::BigInt;my $x = Math::BigInt -> from_bin(1);is($x, '1', '$x is 1');
# -*- mode: perl; -*-
# check that requiring Math::BigInt and then calling from_bin() works
use
strict;
warnings;
Test::More
tests
=> 1;
require
Math::BigInt;
my
$x
= Math::BigInt -> from_bin(1);
is(
,
'1'
'$x is 1'
);