[REBOL] Re: Evaluation and writing in a file
From: greggirwin:mindspring at: 15-Apr-2002 10:21
Hi Richard, << write/append/lines output reduce [ count " - " ligne ] where count is a number and ligne a character string. It doesn't work because I don't have any block, but when I write write/append/lines output [ count " - " ligne ] count isn't evaluated so how can I do ?>>Have you tried COMPOSE? E.g. write/append/lines output compose [ (count) " - " ligne ] --Gregg