Bryan: > When suddenly I wondered, can one convert a function to an object in > rebol?
You can easily *add* a function to an object..... a-function: func [a b /local c] [c: a + b print c] a-function 19 21 ;; test it works an-object: make object! [a-function-in-an-object: :a-function] an-object/a-function-in-an-object 19 21 ;; test it works too Sunanda. -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.
