in reply to Re: Little annoying mistakes ... of others
in thread Little annoying mistakes ... of others
use strict; use warnings; use Getopt::Std; our $opt_m; getopts('m:'); print "$opt_m\n" if ($opt_m); # Wrong #print "$opt_m\n" if (defined $opt_m); # Right
|
|---|