Help for this page

Select Code to Download


  1. or download this
      my $str1 = 'stringone';
      my $str2 = 'stringtwo';
    ...
          }
        }
      }
    
  2. or download this
    open (IN, 'text.txt');
    while (<IN>){
    ...
        push(@array, $_);
        }
    }