forked from KolibriOS/kolibrios
2f54c7de00
git-svn-id: svn://kolibrios.org@8097 a494cfbc-eb01-0410-851d-a64ba20cac60
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.
|