Help for this page

Select Code to Download


  1. or download this
    while(<DATA>)
    {
    ...
        # decide whether to end print with newline
        print "\n" unless $cont;
    }
    
  2. or download this
    while (<DATA>)
    {
        s/\\\s*\n//;
        print;
    }