Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
55dc09017e672ec9705fd11746f48d1de98b443f
/
.
/
examples
/
modula2
/
default.mod
blob: 8c2616d1de289dc482d0b116ffa7d2e706bac8a8 [
file
] [
log
] [
blame
] [
raw
]
MODULE
PrintHelloWorld
;
(*
This
program prints
"Hello world!"
on the standard output device
*)
FROM
InOut
IMPORT
WriteString
,
WriteLn
;
BEGIN
WriteString
(
'Hello world!'
);
WriteLn
;
END
PrintHelloWorld
.