lmecir Wed, 11 Oct 2000 07:00:26 -0700
A model of Rebol string implementation (written in Java): class RebolStringStorage { char [] storage; int storageLength; int stringLength; } class RebolString { int position; RebolStringStorage storage; } Regards Ladislav