- or download this
"method result - ${ \$obj->method }\n";
"method result - " . $obj->method . "\n";
- or download this
"foo @{[ some_list() ]}.";
...
"foo ${\ join ' ', some_list() }";
"foo " . join ' ', some_list();
- or download this
printf "method result - %s\n", $obj->method;