Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
fb4b7bb16e5b9687d9cc2fcbe86a9e18cd982f72
/
.
/
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
.