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

[REBOL] Re: howto_convert?

From: riachtchenko::docutec::de at: 30-Nov-2000 13:58

Hi Joel, since you were so kind to provide also this:
> ; Joel Neely [joel--neely--fedex--com] 901-263-4460 38017/HKA/9677 > REBOL [] foreach [order string] sort/skip reduce [ true "!" > false head reverse "rekcah" none "REBOL " prin "Just " "another " > ] 2 [prin string] print "" > --
i'd ask you- after that:
>>sort/skip reduce [ true "!"
false head reverse "rekcah" none "REBOL " prin "Just " "another " ] 2 Just == [unset "another " none "REBOL " false "hacker" true "!"] ;the same in tracer: ... Result: [true "!" false "hacker" none "REBOL " unset "another "] (block) Trace: 2 (integer) Result: [...] (block) == [unset "another " none "REBOL " false "hacker" true "!"] ;seems, sort sorts here another way as in:
>> sort/skip [true "!" false "hacker" none "REBOL " unset "another "] 2
== [false "hacker" none "REBOL " true "!" unset "another "] ? Thanks, Sascha.