Help language development. Donate to The Perl Foundation

Getopt::Type zef:jjmerelo last updated on 2022-11-28

c059a497d351fedbd52603253fe87d747b4187ee/

Getopt::Type Test-install distro

Forked from tadziks version

MAIN? Getopt semantics? Why not both?

use Getopt::Type;

sub MAIN(*%opts where getopt(<f|force v|verbose>)) {
    say "Forcing!"   if %opts<force>;
    say "Verbosing!" if %opts<verbose>;
    say %opts.perl;
}

# try `raku -Ilib README.md -fv thisprog.raku`