Help for this page

Select Code to Download


  1. or download this
    my @conditional_lines = <DATA>;
    
    my @all_lines = @conditional_lines;
    ...
    #my commented out line
    a standard line
    a line with a     # comment at the end
    
  2. or download this
    while (<DATA>)
        {
        chomp();
    ...
    #my commented out line
    a standard line
    a line with a     # comment at the end