7 lines
170 B
Scala
7 lines
170 B
Scala
import scala.io.Source
|
|
|
|
object HttpTest extends App {
|
|
System.setProperty("http.agent", "*")
|
|
|
|
Source.fromURL("http://www.rosettacode.org").getLines.foreach(println)
|
|
}
|