[REBOL] One for the gurus ...
From: ingo:2b1 at: 1-Nov-2000 8:56
Hi Rebols,
given the following code snippet and error message, can someone
of you figure out what went wrong here?
foreach fld2 head current-fields [
fld2: to-string fld2
either pos2: find pos/2 fld2 [
change next pos2 "txt"
] [
append pos/2 compose [(fld2) "txt"]
]
]
** Script Error: either expected false-block argument of type: block.
** Where: fld2: to-string fld2
either pos2:
I found my error, but it took me quite some time ...
regards,
Ingo