Skip to content

Instantly share code, notes, and snippets.

@armed
Created November 6, 2010 07:10
Show Gist options
  • Save armed/665254 to your computer and use it in GitHub Desktop.
Save armed/665254 to your computer and use it in GitHub Desktop.
object App
{
def main(args : Array[String]) =
{
val filesHere = (new java.io.File(".")).listFiles
for (
file <- filesHere;
file.isFile;
file.getName.endsWith(".scala")
) System.out.println("Найден " + file)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment