in reply to Re^2: Building a dynamic array or some other method?
in thread Building a dynamic array or some other method?

Always use strictures (use strict; use warnings; - see The strictures, according to Seuss). If your debugger can't cope with lexical variables you really need a better debugger! You might consider using the Komodo IDE which provides an integrated debugger, although some setup is required.

Optimising for fewest key strokes only makes sense transmitting to Pluto or beyond
  • Comment on Re^3: Building a dynamic array or some other method?

Replies are listed 'Best First'.
Re^4: Building a dynamic array or some other method?
by CAdood (Acolyte) on Apr 24, 2024 at 03:32 UTC
    I'm just using the built-in perl debugger in a command shell. (DOS environment)

    I'll look into the Komodo debugger. Thank you!