Data update
This commit is contained in:
parent
72eb4943cb
commit
4d5544505c
2347 changed files with 62432 additions and 16731 deletions
13
Task/HTTP/Elena/http.elena
Normal file
13
Task/HTTP/Elena/http.elena
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import net'http;
|
||||
|
||||
public program()
|
||||
{
|
||||
using(HttpClient client := HttpClient.open("http://www.google.com"))
|
||||
{
|
||||
HttpResponse response := client.get();
|
||||
|
||||
string content := response.readAsString();
|
||||
|
||||
Console.writeLine(content);
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue