[REBOL] Re: How to use parenthesis
From: greggirwin:mindspring at: 17-Apr-2002 11:17
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