home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
sampler
/
03
/
exit
/
sdtest.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1987-10-19
|
235 b
|
16 lines
PROGRAM SDTest;
{ Test SysDebug unit }
USES SysDebug;
VAR num : integer;
BEGIN
Writeln( 'Welcome to SysDebug unit test' );
Writeln;
Write( 'Type an exit code : ' );
Readln( num );
Halt( num )
END.