RosettaCodeData/Task/Hello-world-Web-server/Modula-2/hello-world-web-server.mod2

12 lines
202 B
Plaintext

MODULE access;
FROM InOut IMPORT WriteString, WriteLn;
BEGIN
WriteString ("Content-Type : text/plain");
WriteLn;
WriteLn;
WriteString ("Hello web wide world.");
WriteLn
END access.