mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2024-11-10 02:00:33 +01:00
10 lines
114 B
ObjectPascal
10 lines
114 B
ObjectPascal
program Program1;
|
|
|
|
uses
|
|
CRT;
|
|
|
|
begin
|
|
InitConsole('Hello', True);
|
|
WriteLn('My first program');
|
|
ReadKey;
|
|
end. |