HTTPS: Difference between revisions

234 bytes added ,  9 years ago
Explain function getHttps
(Nimrod -> Nim)
(Explain function getHttps)
Line 544:
 
=={{header|Seed7}}==
The library [http://seed7.sourceforge.net/libraries/gethttps.htm gethttps.s7i] defines the function
[http://seed7.sourceforge.net/libraries/gethttps.htm#getHttps%28in_string%29 getHttps] which uses the
HTTPS protocol go get a file.
 
<lang seed7>$ include "seed7_05.s7i";
include "gethttps.s7i";
Line 552 ⟶ 556:
writeln(STD_UTF8_OUT, getHttps("sourceforge.net"));
end func;</lang>
 
=={{header|Swift}}==
<lang Swift>import Foundation