HTTPS: Difference between revisions

(→‎{{header|Groovy}}: Haskell, based on http-conduit example)
Line 317:
<lang Mathematica>
content=Import["https://sourceforge.net", "HTML"]
</lang>
 
=={{header|Objeck}}==
<lang objeck>
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();
};
}
}
</lang>
 
760

edits