Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

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