13 lines
252 B
Text
13 lines
252 B
Text
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);
|
|
};
|
|
}
|