Skip to content

Instantly share code, notes, and snippets.

@MattOates
Created June 22, 2017 17:44
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 MattOates/eaa7d6bd06616d92b80c1176c9c9cd71 to your computer and use it in GitHub Desktop.
Save MattOates/eaa7d6bd06616d92b80c1176c9c9cd71 to your computer and use it in GitHub Desktop.
Demo of --help and help options to a command
sub help {
say "help me!";
}
multi sub MAIN('help') {
help()
}
multi sub MAIN(:$help) {
help() if $help;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment