Help for this page

Select Code to Download


  1. or download this
    $FH = "a scalar";
    @FH = qw/an array/;
    ...
    bar
    baz
    quux
    
  2. or download this
    $main::FH = 'a string';
    print "nope" if not defined *FH{IO};
    ...
    __output__
    
    nope