Added Modula-2 and Modula-3

This commit is contained in:
William Suggs
2009-03-02 09:00:34 +08:00
committed by Mike Donaghy
parent e6b8dfea59
commit 6eb6066a3b
2 changed files with 15 additions and 0 deletions

10
m/modula-2.mod Normal file
View File

@@ -0,0 +1,10 @@
MODULE HelloWorld;
FROM Terminal2 IMPORT WriteString, WriteLn;
BEGIN
WriteString("Hello World");
WriteLn;
END HelloWorld.