6 lines
163 B
Raku
6 lines
163 B
Raku
|
|
my $socket = IO::Socket::INET.new(host => "www.rosettacode.org",
|
||
|
|
port => 80,);
|
||
|
|
$socket.print("GET / HTTP/1.0\r\n\r\n");
|
||
|
|
print $socket.recv();
|
||
|
|
$socket.close;
|