The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
say "1..2";
knowhow ClassHOW {
  method add_method {
    say "ok 1 - method called.";
  }
  method dispatch {
    say "ok 2 - method dispatch.";
  }
}
class Foo {
  method bar {
  }
}
Foo.bar;