Help for this page

Select Code to Download


  1. or download this
    print v10;      # prints newline. 
    print v10, v10; # "No comma allowed after filehandle"
    
  2. or download this
    print v10 x 2; # prints 2 newlines
    
  3. or download this
    print v10 x 1, v10; # also prints 2 newlines