Help for this page

Select Code to Download


  1. or download this
    $argument = undef;
    while (0)
    {
    }
    
  2. or download this
    $|++;
    
    my $argument = $ARGV[0] || warn "No argument given\n";
    ...
        print "Enter an argument: ";
        chomp ($argument = <STDIN>);
    } while (!length($argument));