|
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
���������������
|