From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789101112131415 package main;use MyClass;my MyClass $x :Good :Bad(1**1-1) :Omni(vorous);package SomeOtherClass;use base MyClass;sub tent { 'acle' }sub w :Ugly(sister) :Omni('po',tent()) {}my @y :Good :Omni(s/cie/nt/);my %y :Good(q/bye) :Omni(q/bus/);
package
main;
use
MyClass;
my
MyClass
$x
:Good :Bad(1**1-1) :Omni(vorous);
SomeOtherClass;
base MyClass;
sub
tent {
'acle'
}
w :Ugly(sister) :Omni(
'po'
,tent()) {}
@y
:Good :Omni(s/cie/nt/);
%y
:Good(
q/bye) :Omni(q/
bus/);