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

[REBOL] Re: For loop and dynamic variable

From: rebol665:ifrance at: 18-Apr-2002 13:01

Bonjour, Nos amis anglais appellent ça un ""oneliner" : for i 1 3 1 [ if exists? f: to-file rejoin ["output" i ".tmp"][delete f]] Patrick ----- Original Message ----- From: "COFFRE Richard FTO" <[richard--coffre--francetelecom--com]> To: <[rebol-list--rebol--com]> Sent: Thursday, April 18, 2002 12:01 PM Subject: [REBOL] For loop and dynamic variable Hi I have the following code : output1: %output1.tmp output2: %output2.tmp output3: %output3.tmp if exists? output1 [ delete output1 ] if exists? output2 [ delete output2 ] if exists? output3 [ delete output3 ] I want to simplify it like this : for i 1 3 1 [ output(i): %output(i).tmp if exists? output(i) [ delete output(i) ] ] Any ideas ? TIA Richard Coffre France Telecom Orbiscom Tél. : 01 47 61 46 28 Share what you know, learn what you don't