progs/app1.scala
author Christian Urban <urbanc@in.tum.de>
Tue, 25 Apr 2017 12:28:07 +0100
changeset 485 bd6d999ab7b6
parent 428 a47c4227a0c6
child 559 db5cb071644d
permissions -rw-r--r--
updated

def get_page(url: String) : String = {
  Try(Source.fromURL(url).take(10000).mkString).
     getOrElse { println(s"  Problem with: $url"); ""}
}