[REBOL] Re: loading logic! values...

2004-01-14 Thread Gabriele Santilli
Hi Maxim, On Wednesday, January 14, 2004, 12:14:31 AM, you wrote: MOA has anyone noticed that logic values do not keep their MOA types when saved and reloaded. Why do you think we got MOLD/ALL? :P Regards, Gabriele. -- Gabriele Santilli [EMAIL PROTECTED] -- REBOL Programmer Amiga Group

[REBOL] Re: loading logic! values...

2004-01-14 Thread Maxim Olivier-Adlhoch
of the solution, but in the end, being part of the problem is much more fun. -Original Message- From: Gabriele Santilli [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 14, 2004 3:58 AM To: Maxim Olivier-Adlhoch Subject: [REBOL] Re: loading logic! values... Hi Maxim, On Wednesday

[REBOL] Re: loading logic! values...

2004-01-13 Thread Brett Handley
has anyone noticed that logic values do not keep their types when saved and reloaded. yep when they are reloaded they become word (always?) values.!!! I've never used it but I believe the /ALL refinement of MOLD was created specifically for sort of thing you are trying to do here. Regards,

[REBOL] Re: loading logic! values...

2004-01-13 Thread Ashley Trter
has anyone noticed that logic values do not keep their types when saved and reloaded. save/all %a.txt reduce [none true false date!] b: load %a.txt == [none true false date! ] type? b/1 == none! type? b/2 == logic! type? b/3 == logic! type? b/4 == datatype! This is giving me