[REBOL] Re: How to use parenthesis
From: richard:coffre:francetelecom at: 18-Apr-2002 8:11
I'm really confused but when I test it the first time it failed but as you
mentioned it works now so ...
;-)
Richard
-----Message d'origine-----
De : Gregg Irwin [mailto:[greggirwin--mindspring--com]]
Envoy=E9 : mercredi 17 avril 2002 19:17
=C0 : [rebol-list--rebol--com]
Objet : [REBOL] Re: How to use parenthesis
Hi Richard,
<< I have this instruction :
tcr: remove/part copy/part ligne 11 9
but I need to have something like this :
offset: 7
tcr: remove/part copy/part ligne (4 + offset) (2 + offset)
SO far, it doesn't work ??? >>
I get the same results here. Is the result wrong for both of them?
>> ligne: "1234567890ABCDEF"
== "1234567890ABCDEF"
>> offset: 7
== 7
>> tcr: remove/part copy/part ligne (4 + offset) (2 + offset)
== "0A"
>> tcr: remove/part copy/part ligne 11 9
== "0A"
--Gregg