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

[REBOL] sorting a serie ....

From: garcia::a2::wanadoo::fr at: 18-Jun-2003 19:32

Hello, I try to find the minimun of a serie (print first reduce sort serie). the problem: the sort function works with the name of the variable instead of using their values, even if a use ":" example: a: 255 b: 1 c: -1
>> print sort[:a :b :c]
255 1 -1
>> print sort[a b c]
255 1 -1 And I would like: -1 1 255 how can I do this ? thanks arnaud