11 lines
240 B
Text
11 lines
240 B
Text
use HTTP;
|
|
|
|
class HttpsTest {
|
|
function : Main(args : String[]) ~ Nil {
|
|
client := HttpsClient->New();
|
|
lines := client->Get("https://sourceforge.net");
|
|
each(i : lines) {
|
|
lines->Get(i)->As(String)->PrintLine();
|
|
};
|
|
}
|
|
}
|