Punnable
SYNOPSIS
use Punnable;
role R {
method r {...}
}
make-punnable(R);
my $or = R.new; # runs OK
say $or;
$or.r # fail executing stub code
use Punnable;
role R {
method r {...}
}
make-punnable(R);
my $or = R.new; # runs OK
say $or;
$or.r # fail executing stub code
Resoures
Learning
The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.