Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gm2
/
pimlib
/
run
/
pass
/
testwrite.mod
blob: ce1f0351a0511003adb27f6873451698d2d49b68 [
file
] [
log
] [
blame
]
MODULE testwrite
;
IMPORT ARRAYOFCHAR
;
FROM FIO IMPORT
StdOut
;
BEGIN
ARRAYOFCHAR
.
Write
(
StdOut
,
"hello world"
)
;
ARRAYOFCHAR
.
WriteLn
(
StdOut
)
END
testwrite
.