11 lines
202 B
Text
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.
|