(title) class Method
class Method is Routine { }
my $m = method ($invocant: $param) { say "$invocant: '$param'"; } "greeting".$m("hello"); # greeting: 'hello'