[REBOL] Re: Did you know...
From: carl::cybercraft::co::nz at: 24-Dec-2003 22:18
On 18-May-03, Romano Paolo Tenca wrote:
> Hi Andrew
>> ...that you can use issue! values in path! values (at least for
>> accessing block! values?
> Yes.
> You can use also tag!, email!, money, time, tuple and many others
> datatype!
>>> x: [<33> [10:0 [3.3.3 [$2 [%" a" found] ]]]]
> == [<33> [10:00 [3.3.3 [$2.00 [% a found]]]]]
>>> x/<33>/10:0/3.3.3/$2/%" a"
> == found
> I often use tag!
Hmmm...
>> a: [<name> "John" <email> [john--wherever--not]]
== [<name> "John" <email> [john--wherever--not]]
>> a/<name>
== "John"
>> a/<email>
== [john--wherever--not]
Okay, you can do this too...
>> a: [name "John" email [john--wherever--not]]
== [name "John" email [john--wherever--not]]
>> a/email
== [john--wherever--not]
But do either or both add to REBOL's word-count? (Meaning the 4000
limit, or is it 8000 now? Or is that only set-words?)
--
Carl Read