- or download this
my $tag = 'foo'; # option variable with default value
GetOptions ('tag=s' => \$tag);
- or download this
my $listref = ['a','b','c']; # option variable with default valu
+es
GetOptions ('list=s{,}' => $listref);
- or download this
my $listref = []; # no default
GetOptions ('list=s{,}' => $listref);
my $listref = @{$listref} ? $listref : ['a', 'b', 'c']; # DIY default