[REBOL] Re: How to use parenthesis

2002-04-18 Thread COFFRE Richard FTO
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:[EMAIL PROTECTED]] Envoyé : mercredi 17 avril 2002 19:17 À : [EMAIL PROTECTED] Objet : [REBOL] Re: How to use parenthesis

[REBOL] Re: How to use parenthesis

2002-04-17 Thread Gregg Irwin
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?

[REBOL] Re: How to use parenthesis

2002-04-17 Thread Carl Read
On 18-Apr-02, COFFRE Richard FTO wrote: Hi Rebolers, 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 ??? Hi Richard, It depends

[REBOL] Re: How to use parenthesis

2002-04-17 Thread Charles
Here's what I get in /Core: line: abcdefghijklmnopqrstuvwxyz == abcdefghijklmnopqrstuvwxyz tcr: remove/part copy/part line 11 9 == jk offset: 7 == 7 line == abcdefghijklmnopqrstuvwxyz tcr: remove/part copy/part line (4 + offset) (2 + offset) == jk How is that not working? - Original