RosettaCodeData/Task/Classes/Raku/classes-1.raku

8 lines
163 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class Camel { has Int $.humps = 1; }
my Camel $a .= new;
say $a.humps; # Automatically generated accessor method.
my Camel $b .= new: humps => 2;
say $b.humps;