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