From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314 # -*- mode: perl; -*-use strict;use warnings;use Test::More tests => 2;use Math::BigInt round_mode => "odd";is(Math::BigInt -> round_mode(), "odd", 'Math::BigInt -> round_mode() is "odd"');is(Math::BigInt -> config("round_mode"), "odd", 'Math::BigInt -> config("round_mode") is "odd"');
# -*- mode: perl; -*-
use
strict;
warnings;
Test::More
tests
=> 2;
Math::BigInt
round_mode
=>
"odd"
;
is(Math::BigInt -> round_mode(),
,
'Math::BigInt -> round_mode() is "odd"'
);
is(Math::BigInt -> config(
"round_mode"
),
'Math::BigInt -> config("round_mode") is "odd"'