Skip to content

Instantly share code, notes, and snippets.

@leedo
Created September 28, 2012 20:09
Show Gist options
  • Save leedo/3801859 to your computer and use it in GitHub Desktop.
Save leedo/3801859 to your computer and use it in GitHub Desktop.
class Plugin {
meta {
has @commands;
method command {
my ($command, $callback) = @_;
push @commands, [$command, $callback];
}
}
}
class Plugin::Toot extends Plugin {
command toot => sub {
... # toot
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment