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

[REBOL] Re: to-char

From: rotenca:telvia:it at: 12-Feb-2002 18:16

Hi Joel,
> > Oh and BTW, in the second case (and the one used above) you will > > have problems if you write something like: > > > > a: to-charblock "123" > > b: to-charblock "456" > > > > In both cases, I got the following: > > >> a: to-charblock "123" > == [#"1" #"2" #"3"] > >> b: to-charblock "456" > == [#"4" #"5" #"6"]
I think that Gabriele want to say this:
>> x: func[x] [head insert clear [] x] >> a: x 1
== [1]
>> b: x 2
== [2]
>> a
== [2] --- Ciao Romano