From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

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