[REBOL] Re: I want time!, not string!

2004-02-18 Thread Ingo Hohmann
Hi Hallvard, I haven't seen this exact error before, but some that have been alike ... my guess is that somehow s gets set somewhere else in [...]. Did you try to protect 's directly after setting it? If you still get the same error, there must be a bug in now/time/precise I hope that he

[REBOL] Re: I want time!, not string!

2004-02-19 Thread Gabriele Santilli
Hi Hallvard, On Wednesday, February 18, 2004, 11:30:04 PM, you wrote: HY> I have a funny problem. I have this: HY> s: now/time/precise HY> [...] HY> print join "Took" (now/time - s) HY> But sometimes, 's turns out to be a string! How can that happen?? HY> The script is too long for me to

[REBOL] Re: I want time!, not string!

2004-02-19 Thread iNetW3
* is a string so, *s* will allways be a string. it's not a bug. - Original Message - From: Gabriele Santilli <[EMAIL PROTECTED]> To: Hallvard Ystad <[EMAIL PROTECTED]> Sent: Thursday, February 19, 2004 3:32 AM Subject: [REBOL] Re: I want time!, not string! > >

[REBOL] Re: I want time!, not string!

2004-02-20 Thread Hallvard Ystad
Dixit iNetW3 (05.06 20.02.2004): >Hi Hallvard, >look at >> HELP JOIN >whatever type? the first value is (the Base value), >the second argument (the rest) will adopt it's type?. > in your case *print join "Took" * is a string >so, *s* will allways be a string. it's not a bug. Hi iNetW3, True, th