consultix small logo

Consultix
> Publications


Home
About Consultix
Training Services
Courses
Clients
Publications
 - Presentations
 - Articles
 - Handouts

Interviews
Basic Beautifications

Basic Beautifications

  • Adjust indentation to properly reflect nesting levels
while (my $dir=<>) { chomp $dir; chdir $dir;
foreach my $name (<*.html>) { print "$dir/$name\n"; } }

Becomes:

while (my $dir=<>) {
    chomp $dir;
    chdir $dir;
    foreach my $name (<*.html>) {
        print "$dir/$name\n";
    }
}

                  © 2001 Consultix             consultix-inc.com                

© Copyright 1995-2004 Pacific Software Gurus, Inc.. All Rights Reserved.

   Powered by Google