RosettaCodeData/Task/Command-line-arguments/Perl/command-line-arguments-2.pl

6 lines
99 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
use Getopt::Long;
GetOptions (
'help|h' => \my $help,
'verbose|v' => \my $verbose,
);