Skip to content

Instantly share code, notes, and snippets.

@keizo042
Created July 1, 2014 12:26
Show Gist options
  • Save keizo042/80a2930e2b92af2b1cad to your computer and use it in GitHub Desktop.
Save keizo042/80a2930e2b92af2b1cad to your computer and use it in GitHub Desktop.
file io scala
import scala.io._
object FileUtils {
def main( args: Array[String] ) : Unit = {
Source.fromFile(args(0) ).foreach{
print
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment