home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turbo Toolbox
/
Turbo_Toolbox.iso
/
1991
/
06
/
praxis
/
hellocrt.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-03-12
|
1KB
|
31 lines
(* ------------------------------------------------------ *)
(* HELLOCRT.PAS *)
(* (c) 1991 Andreas Schallmaier & TOOLBOX *)
(* ------------------------------------------------------ *)
PROGRAM HalloWinCRT;
USES Strings, WinCrt;
BEGIN
AutoTracking := TRUE;
{ Damit taucht nur "WindowTitle" in der "WindowBar" auf }
InactiveTitle := '%s';
ScreenSize.X := 64;
ScreenSize.Y := 256;
{ Wir geben dem Kind einen Namen }
StrCopy(WindowTitle, 'Hallo WinCRT');
WriteLn(Output, ' Nahezu jedes neue Programmiersprache, ',
'jede neue Oberfläche ');
WriteLn(Output, ' wird mit diesem Programm vorgestellt!');
WriteLn(Output, ' So auch diese (K&R sei Dank) ...');
WriteLn(Output);
WriteLn(Output);
WriteLn(Output, ' Alternativ hierzu : ');
WriteLn(Output, ' The quick brown fox jumps over the ',
'lazy dog by the banks of the river');
WriteLn(Output);
Close(Output);
END.
(* ------------------------------------------------------ *)
(* Ende von HELLOCRT.PAS *)