home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
menu
/
overdriv
/
drawbox.dem
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1988-04-06
|
212 b
|
12 lines
USES DRAWBOX,IOSTUFF,CRT;
VAR
X,Y : Integer;
BEGIN
X := 5;
Y := 5;
SetColor(Yellow,Magenta);
ClrScr;
WriteSt('Use the arrow keys to draw a box. Note intersecting lines',1,25);
Box(X,Y);
End.