Help for this page

Select Code to Download


  1. or download this
    sub mainMenu {
        ...
        chomp (my $command = <STDIN>);
        ...
    
  2. or download this
    Constant subroutine main::QUIT redefined at C:/Perl/Strawberry/strawbe
    +rry-perl-5.18.1.1-32bit-portable/perl/lib/constant.pm line 140.
    
  3. or download this
    use constant QUIT_COMPUTER_COMMAND => 5;
    
  4. or download this
    if ($light)
    {
    ...
    {
        ...
    }
    
  5. or download this
    while (<$IN>)
    {
        chomp ($loadArray[$counter] = $_);
        $counter++;
    }
    
  6. or download this
    chomp($loadArray[$counter++] = $_) while <$IN>;