File: 05_compound_loops.code

package info (click to toggle)
libppi-perl 1.203-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,576 kB
  • ctags: 603
  • sloc: perl: 10,139; makefile: 43
file content (11 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
while (1) {}
until (1) {}
foreach () {}
LABEL: foreach $foo ( 1 .. 20 ) {
}
foreach my $foo () {}
for my $foo () {}
foreach $foo () {}
for $foo () {}
for (my $a = 0; $a < 10; $a++) {
}