while () { if (/foo/) { $count++; print "$count so far.\n"; } } #### while () { while (/foo/g) { $count++; print "$count so far.\n"; } } #### while () { $count++ while /foo/g; } print $count;