> On 23 May 2017, at 20:01, Gabor Szabo <szab...@gmail.com> wrote:
> given an object $o and the name of a method in $method = "run"
> how can I invoke the $o.run() ?
> 
> Something like $o.call($method)

$o.”$method"()

$ 6 'my $method = "Str"; dd 42."$method"()'
“42"

Liz

Reply via email to