Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 254 Bytes

Polymorphic_copy.md

File metadata and controls

16 lines (11 loc) · 254 Bytes
my Cool $x = 22/7 but role Fink { method brag { say "I'm a cool {self.WHAT.raku}!" }}
my Cool $y = $x.clone;
$y.brag;

Output:

I'm a cool Rat+{Fink}!