Help for this page

Select Code to Download


  1. or download this
    sub there {
      print "I'm here!";
    ...
    foreach (keys %refs) {
      print "'$_' is ", defined &{$refs{$_}} ? "valid\n" : "invalid\n";
    }
    
  2. or download this
    'there' is valid
    'not' is invalid
    'anon' is valid