in reply to SVN:Client Check out error

saravanakumar89:

When you see the error "Use of uninitialized value", it simply means that a variable has no value (i.e. is undef). So when a third party module spits out that error message it generally means something like:

There are other conditions that can lead to this error as well--I just can't think of them off the top of my head. If you learn how to use the debugger, though, you'll be able to track these errors down, and you can often learn quite a bit faster: Rather than spending the time adding and removing print statements, you can tweak values and continue, letting you get through your code faster. Using the debugger can help you learn a lot more about the internals of a third-party module as well. While you can read the code, sometimes you'll run into a bit where it's difficult to interpret exactly what's happening. Using the debugger, you can see the before and after result and get a good bit more insight.

Update: Added "to a" to third bullet point, allowing the sentence to make sense...

...roboticus

When your only tool is a hammer, all problems look like your thumb.