--- Abdel Belkasri <[EMAIL PROTECTED]> wrote: > Anton, > > 1- Can I create my own custom object?
Sure. foo: make object! [ . . . ] That'll create an object. It works much like an object in a "real" OO language -- it can have data members, methods, etc. The big thing it misses compared to, say, C++ is you can't overload operators; it also only features single inheritance, but that's not so uncommon. > 2- Can I run my legacy application written in C, > VC++, VB in the REBOL shell? AFAIK, yes, using /Pro or /Command, you can run arbitrary "native" programs from REBOL, either from a script or the console. With /Core or /View, no, you cannot. __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
