1234567891011121314 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;
say
"1..2"
;
knowhow ClassHOW {
method add_method {
"ok 1 - method called."
}
method dispatch {
"ok 2 - method dispatch."
class Foo {
method bar {
Foo.bar;