Added MEGAMAX project

This commit is contained in:
2020-10-01 15:10:43 +02:00
parent 9c803e3aa5
commit 18fb82e228
4 changed files with 25 additions and 0 deletions

14
src/telnet.m Normal file
View File

@@ -0,0 +1,14 @@
MODULE Telnet;
FROM InOut IMPORT WriteString, WriteLn, Read;
VAR exit : CHAR;
BEGIN
WriteString("Hello, World!");
WriteLn;
Read(exit);
END Telnet.
(* vim: set filetype=modula2: *)