Hello Cyphre,

Friday, March 08, 2002, 10:34:35 AM, you wrote:

C> Holger(RT),

C> I forgot one very useful feature which would probably lot of rebolers love
C> to have in new Rebol/Core. I mean the possibility to add new words to
C> specified context...something like:

C> extend object [new-word: value]

and what about:
>> obj: context [a: 1]
>> probe make obj [b: 2]

make object! [
    a: 1
    b: 2
]

so you can have function:
>>extend: func[obj [object!] blk [block!]][make obj blk]
>>probe extend obj [c: 3]

make object! [
    a: 1
    c: 3
]

I think that should be enough in most cases.
I would rather appreciate some native for converting numbers to
binary!

Oldes


-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to