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

[REBOL] Re: Confused about "word" forms

From: semseddinm:bircom at: 2-Dec-2010 18:40

Trace results are interesting for quote function in R2 x: 5 quote x Trace: quote (word) Trace: return (word) Trace: get/any (path) Trace: 'value (lit-word) Result: 5 (integer) Result: (error) ;??? Result: 5 (integer) == 5 quote :x Trace: quote (word) Trace: return (word) Trace: get/any (path) Trace: 'value (lit-word) Result: :x (get-word) Result: (error) Result: :x (get-word) == :x ;y is undefined quote :y Trace: quote (word) Trace: return (word) Trace: get/any (path) Trace: 'value (lit-word) Result: :y (get-word) Result: (error) Result: :y (get-word) == :y quote y Trace: quote (word) Trace: return (word) Trace: get/any (path) Trace: 'value (lit-word) Result: (unset) Result: (error) Result: (unset) ;returns unset! probe quote y == unset! Thu, 02 Dec 2010 18:23:00 +0200 tarihinde Ladislav Mecir <lmecir-volny.cz> =FE=F6yle yazm=FD=FE: