Help for this page

Select Code to Download


  1. or download this
    my $line =~ / /
    
  2. or download this
    open my $FILE, '<', $myfile or die $!;
    while (my $line = <$FILE>) {                           # Read a line f
    +rom the file.
        my ($project, $value1, $value2) = split ' ', $line;