Skip to content

Instantly share code, notes, and snippets.

@spencerdeinum
Created May 23, 2013 02:48
Show Gist options
  • Save spencerdeinum/5632477 to your computer and use it in GitHub Desktop.
Save spencerdeinum/5632477 to your computer and use it in GitHub Desktop.
Source.fromURL
object Main extends App {
val stream = Source.fromURL("http://www.yahoo.ca")
val lines = stream.getLines()
stream.getLines().foreach(println)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment