Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created December 1, 2016 17:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoffixznet/ad2bfbddf71840623d07ebaddc4055da to your computer and use it in GitHub Desktop.
Save zoffixznet/ad2bfbddf71840623d07ebaddc4055da to your computer and use it in GitHub Desktop.
class Thingie {
multi method stuff (Str $ where /meows/) {
say "Meow meow!";
}
}
class SubThingie is Thingie {
multi method stuff ($ where /foos/) {
say "Just foos...";
}
}
SubThingie.new.stuff: 'meows and foos';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment