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

[REBOL] Re: bind / context / refinement headaches

From: cyphre:seznam:cz at: 25-Oct-2001 19:08

what about: a: use [ myself ][myself: func [ a /b /local c] [ probe b ; c now contains the function signature of myself c: first :myself ;make sure we can find our values (you'd say) bind c 'b ;get the value of first c = a probe get/any first c ;same for /b probe get bind to-word second c 'c ] ] regards Cyphre