10 lines
182 B
Text
10 lines
182 B
Text
# Several ways to do it
|
|
"Hello world!";
|
|
|
|
Print("Hello world!\n"); # No EOL appended
|
|
|
|
Display("Hello world!");
|
|
|
|
f := OutputTextUser();
|
|
WriteLine(f, "Hello world!\n");
|
|
CloseStream(f);
|