RosettaCodeData/Task/Hello-world-Web-server/Modula-2/hello-world-web-server.mod2
2023-07-01 13:44:08 -04:00

11 lines
202 B
Text

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