Help for this page
>> 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...
my $ref = "Bar::FooOnYou"; $var->$ref("Howdy\n");