import java.io.File object Main { def main(args: Array[String]) = { println(new File("/bin").listFiles().map(_.getName).sorted.mkString("\n")) } }