The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# -*- mode: perl; -*-
# check that requiring Math::BigInt and then calling from_bin() works
use strict;
use Test::More tests => 1;
require Math::BigInt;
my $x = Math::BigInt -> from_bin(1);
is($x, '1', '$x is 1');