Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید

B.15. Debugging


There''s a very good debugger that comes with Perl and supports
breakpoints, watchpoints, single-stepping, and generally everything
you''d want in a command-line Perl debugger. It''s actually written
in Perl (so, if there are bugs in the debugger, we''re not sure
how they get those out). But that means that, in addition to all of
the usual debugger commands, you can actually run Perl code from the
debugger -- calling your subroutines, changing variables, even
redefining subroutines -- while your program is running. See the
perldebug manpage for the latest details.

Another debugging tactic is to use the
B::Lint module, which is still preliminary as of
this writing.

/ 875