Help for this page

Select Code to Download


  1. or download this
    push my @users, $line;
    
  2. or download this
    push my(@users), $line;
    
  3. or download this
    my @users;
    push @users, $line;
    
  4. or download this
    split(/ /,$line)