in reply to How do I dynamically declare a package name for
andeval{ $t = 1; }
Your getting a very big server hit if you try to dynamically write perl syntax. If you don't need to create syntax on the fly, put braces around it. It will do much better and you can still catch bugs at compile time.eval "$t = 1;"
|
|---|