So, you are saying that you have name/value pairs to associate to an id? id:'propname' Is propvalue
where propname is a user defined property name (such as category, name, zip, etc) and propvalue is any allowed value. Note that the usage of ':' is not Rebol's usage (below). It is merely to associate properties to a value. id:'category' 'name' 'zip' Is 'chalet' 'BestChalet' 75002 id:'category' =='chalet' id:'name' =='BestChalet' id:'zip' 75002 id:'zip' Is 75003 --oops, to correct an error id: --list the property names =='category' 'name' 'zip' id:(id:) --list the property values 'chalet' 'BestChalet' 75003 Download NeoPlanet at http://www.neoplanet.com -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
