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

[REBOL] Re: Core 2.5.5 Beta Versions

From: rotenca:telvia:it at: 22-Feb-2003 15:08

Hi, all these are the results of my tests under Core 2.5.5.3.1 b: tail a: "a" clear a These expressions return an error: mold b probe b ? b ?? b help b poke b 1 #"a" first b ;... last b same? b b equal? b b ;... These expressions CRASH the interpreter: copy b find b 1 select b 1 replace b #"a" #"b" uppercase b lowercase b Detab has this effect mold/all b ;== {#[string! "" 2]} mold/all detab b ;== {#[string! "^^@" 2]} Change has this effect mold/all change b #"a" ;== {#[string! "^^@a" 3]} mold/all b ;== {#[string! "^^@a" 2]} --- Ciao Romano