progs/app0.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 19 Sep 2024 19:21:52 +0100
changeset 963 85bb0ef99fc7
parent 559 db5cb071644d
permissions -rw-r--r--
texupdate

import io.Source

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