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

[REBOL] Convert block inplace?

From: robert:muench:robertmuench at: 25-Jul-2004 16:31

Hi, I'm trying to convert a block of values in place to other types. Exmaple: a: [%hi.txt %ho.txt] convert-block a string! should gibe: a: ["hi.txt" "ho.txt"] Some questions: 1. How can I change the block in place inside the function? I tried 'forall but I can't referr to the "current" entry. 2. 'swtich seems not to work with datatype! Is this a bug? Robert