forked from KolibriOS/kolibrios
14 lines
149 B
Plaintext
14 lines
149 B
Plaintext
|
MODULE Hello;
|
||
|
|
||
|
IMPORT Console, In, Out;
|
||
|
|
||
|
|
||
|
BEGIN
|
||
|
Console.open;
|
||
|
|
||
|
Out.String("Hello, world!");
|
||
|
In.Ln;
|
||
|
|
||
|
Console.exit(TRUE)
|
||
|
END Hello.
|