Why isn't this working?
eval "$response = $ua->request($r);"
print "$@";
gives:
syntax error at (eval 8) line 1, near "="
feedback
|
|
It isn't working because your double-quoted string is subject to interpolation, which is not going to go well, with those variables being expanded in place. And you need a semicolon outside your eval, not so much inside it. Try single quotes like so:
| |||||||||||||||||||||
feedback
|
|
A better question is why you are using a string eval, instead of a block eval?
| |||||
feedback
|
|
An even better better question is why you are using eval in the first place? I suspect that you are using Thus, why not simply use:
? | |||||||||||||
feedback
|