Help for this page

Select Code to Download


  1. or download this
    open(FOO, '>', ...) or die $!;
    print(FOO "string\n");
    
  2. or download this
    open(*FOO, '>', ...) or die $!;
    print({ *FOO } "string\n");