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

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