mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-16 20:02:35 +03:00
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.
|