8 lines
170 B
Scala
8 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)
|
||
|
|
}
|