in reply to Re: Command line argument
in thread Command line argument
This is the noise you'll be making when you try and run that program: "ARVG! ARVG!"$argument = undef; while (0) { }
$|++; my $argument = $ARGV[0] || warn "No argument given\n"; do { print "Enter an argument: "; chomp ($argument = <STDIN>); } while (!length($argument));
|
|---|