Skip to content

Instantly share code, notes, and snippets.

Created June 27, 2012 09:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4870f14c5f384e663daa to your computer and use it in GitHub Desktop.
Save anonymous/4870f14c5f384e663daa to your computer and use it in GitHub Desktop.
BEFORE
for dir($path) -> $name {
if "$path/$name".IO ~~ :f && $name ~~ /^ (\w+) '.cs' $/ {
@found.push($0);
}
}
AFTER
for dir($path) -> $name {
if $name.f && $name.Str ~~ / '/' (\w+) '.cs' $/ {
@found.push($0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment