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

[REBOL] Re: Evaluation and writing in a file

From: ronald:free at: 16-Apr-2002 10:29

Bonjour COFFRE, Monday, April 15, 2002, 3:56:09 PM, vous avez écrit: CRF> Hi Rebol fellows, CRF> I use to code below to write something in a file : CRF> write/append/lines output reduce [ count " - " ligne ] CRF> where count is a number and ligne a character string. It doesn't work CRF> because I don't have any block, but when I write CRF> write/append/lines output [ count " - " ligne ] CRF> count isn't evaluated so how can I do ? CRF> So far, I split it in 3 instructions. CRF> Any ideas ? CRF> TIA CRF> Richard Coffre CRF> France Telecom Orbiscom CRF> Tél. : 01 47 61 46 28 CRF> -- CRF> To unsubscribe from this list, please send an email to CRF> [rebol-request--rebol--com] with "unsubscribe" in the CRF> subject, without the quotes. write/append/lines output reform [count " - " ligne] should make it HIH -- Cordialement, Ronald