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 the program at the step at
which $i takes on the value of 10. What command is used to do this?

All feedback will be appreciated.

TIA

Anjan




-- 
ANJAN PURKAYASTHA, PhD.
Senior Computational Biologist
==========================

1101 King Street, Suite 310,
Alexandria, VA 22314.
703.518.8040 (office)
703.740.6939 (mobile)

email:
[EMAIL PROTECTED];
[EMAIL PROTECTED]

http://www.vbi.vt.edu

==========================

Reply via email to