Help for this page

Select Code to Download


  1. or download this
    local $\="\n";
    print('a');
    ...
       print('c');
    }
    print('d');
    
  2. or download this
    a
    b
    d
    
  3. or download this
    local $\="\n";
    print('a');
    ...
       print('c');
    };
    print('d');
    
  4. or download this
    a
    b
    Can't "last" outside a loop block at a.pl line 5.