Skip to content

String datatype

Include: Built in; no package required.

String stores runtime text using RtString = String<char> storage.

Size

Pointer-sized runtime string reference storage; string payload length is dynamic.

Range

Dynamic string length is runtime-managed.

Example

String sName
Move "Ada" to sName

Notes

The current runtime source confirms char storage for String. This page does not claim a user-facing encoding beyond that storage type.