RosettaCodeData/Task/Hello-world-Web-server/Modula-2/hello-world-web-server.mod2
Ingy döt Net 6f050a029e update
2013-06-05 21:47:54 +00: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.