7 lines
168 B
Scala
7 lines
168 B
Scala
import scala.io.Source
|
|
|
|
object HttpsTest extends App {
|
|
System.setProperty("http.agent", "*")
|
|
|
|
Source.fromURL("https://sourceforge.net").getLines.foreach(println)
|
|
}
|