[REBOL] what am I actually causing? - Core 2.5.5 and series ...
From: petr::krenzelok::trz::cz at: 10-Mar-2003 10:52
Here's a short console jamming - you should note the it was not
intentional, I just tried what came to my mind, but I don't understand
the null char anyway ...
->> a: "abc"
== "abc"
->> b: next a
== "bc"
->> clear a
== ""
->> tail? b
== true
->> head? b
== true
->> insert b "x"
== ** Script Error: Out of range or past end
->> insert head b "x"
== "^@"
->> mold a
== {"x^^@"}
->> mold b
== {"^^@"}
I am a bit confused ...
Thanks,
-pekr-