Help for this page

Select Code to Download


  1. or download this
    my $glob = 'FOO';
    if (defined do {
        no strict 'vars';
        *$glob{IO}}) {
        # ...
    }
    
  2. or download this
    if (defined *FOO{IO}) {
        # ...
    }
    
  3. or download this
    if (*FOO{IO}) {
        # ...
    }