string-nth ( n string -- ch )


Vocabulary
strings.private

Inputs
na fixnum
stringa string


Outputs
chthe character at the nth index


Word description
Unsafe string accessor, used to define nth on strings.

Warning
This word is in the strings.private vocabulary because it does not perform type or bounds checking. User code should call nth instead.


Definition