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

[REBOL] help object!/func

From: rchristiansen:pop:isdfa:sei-it at: 5-Jan-2001 11:13

Is there any way to use 'help on a function which is a value in an object! datatype? Using 'help only tells me the function is a path of the object!
>> test: make object! [
[ test-function: func [][ [ print "test" [ ] [ ]
>> test/test-function
test
>> help test/test-function
test/test-function is a path -Ryan