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

[REBOL] Path Access Problem

From: rsnell::webtrends::com at: 16-Nov-2000 10:40

When I access a value in a block via a path, the value seems right but the type does not.
>> m: [b false]
== [b false]
>> probe m/b
false == false Looks ok so far, BUT
>> type? m/b
== word! which means that things like this don't work:
>> if m/b [print "what?"]
what?
>>
Is there a way to make this work? (BTW, Thanks Larry for that last 'any 'all trick) TIA, Rodney