Help for this page

Select Code to Download


  1. or download this
       while (<ACTLIST>)
        {
            $TheLine = $_;
            @WordList = "$TheLine";
        }
    
  2. or download this
       while (<ACTLIST>)
        {
            push @WordList, $_;
        }
    
  3. or download this
    @WordList = (<ACTLIST>);