Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Implicit renaming

From: greggirwin:mindspring at: 15-Apr-2002 10:25

Hi Richard, << file: to-file ask "Filename? " output1: copy head change find/last file "." ".loc" output2: copy head change find/last file "." ".lst" I have the result below where the variable "file" has changed its valuee !!!! What can I do to avoid this ?
>>
Use COPY before you use CHANGE. output1: copy head change find/last copy file "." ".loc" output2: copy head change find/last copy file "." ".lst" --Gregg