Skip to content

Instantly share code, notes, and snippets.

@matthewfl
Created February 28, 2010 06:03
Show Gist options
  • Save matthewfl/317306 to your computer and use it in GitHub Desktop.
Save matthewfl/317306 to your computer and use it in GitHub Desktop.
# make a little code system using a lot of dir
sub makeMess {
my $dep = shift;
if ($dep != 0) {
for(my $c=0; $c<10; $c++) {
mkdir("$c");
chdir("$c");
makeMess($dep-1);
chdir("..");
}
}
}
makeMess(6);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment