Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created December 1, 2016 17:08
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/d41b3aa444144c2ab3322ad2b85db481 to your computer and use it in GitHub Desktop.
Save zoffixznet/d41b3aa444144c2ab3322ad2b85db481 to your computer and use it in GitHub Desktop.
class Thingie {
multi method stuff ($ 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