Created
January 26, 2016 22:46
-
-
Save hoelzro/7fd925b4f4617a5c46b5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
our sub MAIN_HELPER($retval = 0) is export { | |
say "doing getopty stuff!"; | |
my $m = callframe(1).my<&MAIN>; | |
return $retval unless $m; | |
say 'calling MAIN with no args'; | |
$m(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v6; | |
use Getopt; | |
sub MAIN() { | |
say 'The rain in MAIN falls mainly on the plain'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment