From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

package Foo;
use strict;
use warnings;
use Function::Parameters;
method echo($msg) {
return $msg
}
print Foo->echo(42);