From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910 #!perluse strict;use warnings;use Math::Matrix;use Test::More tests => 1;my $str = Math::Matrix -> version();like($str, qr/^Math::Matrix \d+(\.\d*)?\z/, 'output from version() is valid');
#!perl
use
strict;
warnings;
Math::Matrix;
Test::More
tests
=> 1;
my
$str
= Math::Matrix -> version();
like(
,
qr/^Math::Matrix \d+(\.\d*)?\z/
'output from version() is valid'
);