Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
11
Task/HTTPS/Sidef/https.sidef
Normal file
11
Task/HTTPS/Sidef/https.sidef
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
var lwp = require('LWP::UserAgent'); # LWP::Protocol::https is needed
|
||||
var url = 'https://rosettacode.org';
|
||||
|
||||
var ua = lwp.new(
|
||||
agent => 'Mozilla/5.0',
|
||||
ssl_opts => Hash.new(verify_hostname => 1),
|
||||
);
|
||||
|
||||
var resp = ua.get(url);
|
||||
resp.is_success || die "Failed to GET #{url.dump}: #{resp.status_line}";
|
||||
print resp.decoded_content;
|
||||
Loading…
Add table
Add a link
Reference in a new issue