home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
fpc
/
source
/
docs
/
crtex
/
ex10.pp
< 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
|
2000-01-01
|
308 b
|
19 lines
Program Example10;
uses Crt;
{ Program to demonstrate the InsLine function. }
begin
ClrScr;
WriteLn;
WriteLn('Line 1');
WriteLn('Line 3');
WriteLn;
WriteLn('Oops, forgot Line 2, let''s insert at the cursor postion');
GotoXY(1,3);
ReadKey;
InsLine;
Write('Line 2');
GotoXY(1,10);
end.