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

[REBOL] Newbie SELECT problem

From: kpeters::vu-ware::com at: 6-Mar-2005 7:59

Hi ~ am trying to select from a decode-cgi block but cannot select set-words?? What am I doing wrong? As always, thanks for any help Kai
>> probe blk
[name: "kai" city: "kelowna" year: "2005"] == [name: "kai" city: "kelowna" year: "2005"]
>> select blk "kai"
== city:
>> select blk city:
** Script Error: city needs a value ** Near: select blk city:
>> select blk 'city:
** Syntax Error: Invalid word -- 'city: ** Near: (line 1) select blk 'city:
>> select blk 'city
== none
>> select blk city
** Script Error: city has no value ** Near: select blk city