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

[REBOL] Re: basics: meaning and uses of make object! vs. context

From: ammon:rcslv at: 9-Jun-2002 18:34

Hi, Ok, in that sense, you are right. If you need to know the value of words that are given within the context of a function, source will not give that to you as it only appears as a word in the function. However you have shown me a very valuable tool for finding the value of a word that is within a function...
>> a: make object! [ blk: [ print "HI" ] set 'f func [][ do blk ]] >> get second second :f
[print "Hi"] Thanks!! Ammon A short time ago, Ingo Hohmann, sent an email stating: