in reply to Re^7: $obj->method v.s. $obj->method()
in thread $obj->method v.s. $obj->method()

my $method = "foo"; $obj->$method; $obj->$method @args;
On both 5.004_02 and 5.004_04:

Replies are listed 'Best First'.
Re^9: $obj->method v.s. $obj->method()
by Burak (Chaplain) on May 10, 2009 at 01:44 UTC
    Thanks! It's confirmed by your post :)