[REBOL] Types & runtime
From: robert:muench:robertmuench at: 25-Aug-2002 12:49
Hi, can some help me with this: list: [name string! birthday date!] field: pick list 1 type: pick list 2>> type? Type== word! What I want to do is to set field to a value of type 'type. Something like: switch type [ string! [value: "test"] ] to-set-word field reduce[make to-type type value] Is something like this possible? Robert