HSG |
|
program Project1; uses Forms; {$R *.RES} begin Application.Initialize; Application.Run; end.
program p1; {$AppType Console} begin writeLn('Hallo Welt!'); readLn; end.Der Compiler-Befehl {$AppType Console} bewirkt, dass eine Konsolen-Anwendung erzeugt wird. Default ist {$AppType GUI} für die übliche graphische Oberfläche. Das readLn wartet wie aus Turbo-Pascal gewohnt auf Eingabe von RETURN.