RosettaCodeData/Task/Call-an-object-method/Raku/call-an-object-method-3.raku

7 lines
175 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
my $object = "a string"; # Everything is an object.
my method example-method {
return "This is { self }.";
}
say $object.&example-method; # Outputs "This is a string."