|
import net'http;
|
|
import mbedtls'registration;
|
|
|
|
public program()
|
|
{
|
|
using(HttpClient client := HttpClient.open("https://www.google.com"))
|
|
{
|
|
HttpResponse response := client.get();
|
|
|
|
string content := response.readAsString();
|
|
|
|
Console.writeLine(content);
|
|
};
|
|
}
|