home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
TOPDEMO.ZIP
/
DRAWBOX.DEM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1988-04-05
|
211 b
|
12 lines
USES DRAWBOX,IOSTUFF,CRT;
VAR
X,Y : Integer;
BEGIN
X := 5;
Y := 5;
ClrScr;
SetColor(Magenta,Black);
WriteSt('Use the arrow keys to draw a box. Note intersecting lines',1,25);
Box(X,Y);
End.