Help for this page

Select Code to Download


  1. or download this
    while (<>) {
       print("/") if $. != 1;
       print(/=(.*)/);
    }
    print("\n");
    
  2. or download this
    my @line = <DATA>;
    for my $line (@line) {
    
  3. or download this
    while (my $line = <DATA>) {