RosettaCodeData/Task/Hello-world-Web-server/Perl-6/hello-world-web-server-1.pl6

8 lines
275 B
Raku
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
my $listen = IO::Socket::INET.new(:listen, :localhost<localhost>, :localport(8080));
loop {
my $conn = $listen.accept;
my $req = $conn.get ;
$conn.print: "HTTP/1.0 200 OK\r\nContent-Type: text/plain; charset=UTF-8\r\n\r\nGoodbye, World!\r\n";
$conn.close;
}