progs/app0.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 17 Sep 2025 14:29:52 +0100
changeset 984 be2d568644f6
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
}