Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Ready for REBOL/Core 2.6?

From: oliva:david:seznam:cz at: 29-Mar-2002 14:40

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