in reply to Re^2: Newbie to PERL debugger
in thread Newbie to PERL debugger

Ah, X and V are only for package variables. They will not work for lexical (my) variables. You can display specific lexical variables with "x", but not by regex. It does say "y" should work for lexicals like V and X, if you have PadWalker installed (which I don't).