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

[REBOL] Re: Script Error: Cannot use add on string! value

From: tomc:darkwing:uoregon at: 10-Apr-2002 9:28

On Wed, 10 Apr 2002, COFFRE Richard FTO wrote:
> Hi, > > I got the following error : > > ** Script Error: Cannot use add on string! value > ** Near: output: output + ".sty" > > In the code : > > file: to-file ask "Filename? " > parse file [ copy output to "." ] > output: output + ".sty"
output: join output [".sty"] output: rejoin [output ".sty"] append output ".sty" ...