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

[REBOL] Re: Beginner's automatic type conversion

From: tomc:darkwing:uoregon at: 22-Sep-2002 16:42

'load may be what you are looking for foo: ["09:33" "12.30" "1 270"] == ["09:33" "12.30" "1 270"]
>> foreach f foo[append bar load trim/all f]
== [9:33 12.3 1270]
>> foreach b bar[ print type? b]
time decimal integer On Mon, 23 Sep 2002, Laurent Giroud wrote: