Re: Debugger question

2008-02-15 Thread Menghan Zheng
Menghan Zheng 写道: type "watch $i==10" w $i==10 这两天用gdb很多,我把gdb的语法和perl的语法搞混了, sorry when $i is 10, the script pauses. ANJAN PURKAYASTHA 写道: I have a simple script that I'm using to learn debugging: #! /usr/bin/perl -w use strict; use warnings; my $i= 0; while ($i<= 15)

Re: Debugger question

2008-02-15 Thread Menghan Zheng
type "watch $i==10" when $i is 10, the script pauses. ANJAN PURKAYASTHA 写道: I have a simple script that I'm using to learn debugging: #! /usr/bin/perl -w use strict; use warnings; my $i= 0; while ($i<= 15){ print ("$i\n"); $i++; } Question: i would like to attach a breakpoint in th