Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more
12345678910111213 # -*- mode: perl; -*-# check that requiring Math::BigRat and then calling binf() worksuse strict;use warnings;use Test::More tests => 1;require Math::BigRat;my $x = Math::BigRat -> binf();is($x, 'inf', '$x is inf');
# -*- mode: perl; -*-
# check that requiring Math::BigRat and then calling binf() works
use
strict;
warnings;
Test::More
tests
=> 1;
require
Math::BigRat;
my
$x
= Math::BigRat -> binf();
is(
,
'inf'
'$x is inf'
);