mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2025-09-21 02:30:07 +02:00
14 lines
126 B
ObjectPascal
14 lines
126 B
ObjectPascal
program Hello;
|
|
|
|
uses
|
|
CRT;
|
|
|
|
begin
|
|
ConsoleInit('Hello');
|
|
|
|
WriteLn('Hello, world!');
|
|
|
|
ReadKey;
|
|
ConsoleExit(True);
|
|
end.
|