Codebase list ohcount / upstream/3.1.1 test / detect_files / modula2.mod
upstream/3.1.1

Tree @upstream/3.1.1 (Download .tar.gz)

modula2.mod @upstream/3.1.1raw · history · blame

1
2
3
4
5
6
(* Modula-2 module *)
MODULE Hello;
FROM STextIO IMPORT WriteString;
BEGIN
  WriteString("Hello World!");
END Hello.