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

[REBOL] word Re:

From: tim:johnsons-web at: 13-Aug-2000 8:36

Hi Fantam:
> I am confused. Consider this small script: > >REBOL [] > >block: ["a" "b" "c"] >code: [print member] >foreach member block [do code]
but this works: block: ["a" "b" "c"] mcode: func [member][print member] m: "x" foreach member block [m: member mcode m] I believe that rebol enforces 'member as having a special scope. Your question is worthy of more discussion: perhaps some of the more experienced members would like to chime in on this... -Tim