progs/app0.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 13 May 2021 13:10:38 +0100
changeset 825 fb9f63a22114
parent 559 893e756e18f5
permissions -rw-r--r--
updated

import io.Source

def get_page(url: String) : String = { 
  Source.fromURL(url)("ISO-8859-1").take(10000).mkString
}