in reply to NEWBIE: Can someone explain this error?

A common cause is code like this: ($a, $b) = /foo(bar+)(baz*)/; $result = "got baz: $b"; or $result = "got baz: $1"; You may have a value that "should" be assigned but was instead undefined.
  • Comment on RE: NEWBIE: Can someone explain this error?