home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Source Code 1992 March
/
Source_Code_CD-ROM_Walnut_Creek_March_1992.iso
/
msdos
/
pascal
/
pascsrc.arc
/
REPEATLP.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-01-15
|
372 b
|
16 lines
(* Chapter 4 - Program 6 *)
program Repeat_Loop_Example;
var Count : integer;
begin
Count := 4;
repeat
Write('This is in the ');
Write('repeat loop, and ');
Write('the index is',Count:4);
Writeln;
Count := Count + 2;
until Count = 20;
Writeln(' We have completed the loop ');
end.