Help for this page

Select Code to Download


  1. or download this
    >>     my $ref = \&Bar::FooOnYou;
    >>     $var->$ref("Howdy\n");
    >OK  interesting symetry with Martien's approach:
    >I'm wondering if this is TIMTOWDI, or if there's a gotcha in
    >there...
    
  2. or download this
         my $ref = "Bar::FooOnYou";   
         $var->$ref("Howdy\n");