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

12 lines
202 B
Text
Raw Permalink Normal View History

2013-06-05 21:47:54 +00:00
MODULE access;
FROM InOut IMPORT WriteString, WriteLn;
BEGIN
WriteString ("Content-Type : text/plain");
WriteLn;
WriteLn;
WriteString ("Hello web wide world.");
WriteLn
END access.