in reply to Debugger actions: On which lines?
#!/usr/bin/perl -w use strict; use warnings; my $x = 3; my $y = 0; for(1..3){ $y = $x; print "line 1 ---- x = $x -- y = $y\n"; $y++; print "line 2 ---- x = $x -- y = $y\n"; $x -= $y; print "line 3 ---- x = $x -- y = $y\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Debugger actions: On which lines?
by worik (Sexton) on Aug 18, 2015 at 05:29 UTC | |
by 1nickt (Canon) on Aug 18, 2015 at 05:40 UTC | |
by james28909 (Deacon) on Aug 18, 2015 at 05:59 UTC | |
by 1nickt (Canon) on Aug 18, 2015 at 06:20 UTC | |
by james28909 (Deacon) on Aug 18, 2015 at 09:09 UTC | |
| |
by james28909 (Deacon) on Aug 18, 2015 at 05:32 UTC | |
by worik (Sexton) on Aug 18, 2015 at 05:38 UTC |