home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
mac
/
developm
/
language
/
elan.sit
/
files
/
COPY.E
next >
Wrap
Text File
|
1988-11-09
|
395b
|
27 lines
copy:
ask name of old file;
ask name of new file;
copy from old to new.
ask name of old file:
TEXT VAR x;
put ("Old file :");
get (x);
old file (x).
ask name of new file:
put ("New file :");
get (x);
new file (x).
copy from old to new:
REP
read (x);
write (x);
write line
UNTIL file ended
ENDREP;
close file.