Help for this page

Select Code to Download


  1. or download this
    # Keeps newlines.
    
    ...
    
    print(scalar(@fetch), "\n");
    print join("\n---\n",@fetch);
    
  2. or download this
    # Removes newlines.
    
    ...
    
    print(scalar(@fetch), "\n");
    print join("\n---\n",@fetch);