This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
After running an action in the debugger, turn it off
[perl5.git] / lib / perl5db / t / test-a-statement-3
1 use strict; use warnings;
2
3 for my $x (1 .. 2) {
4     my $y = $x + 1;
5     my $x = $x - 1;
6 }