STRING! The string data type is a sequence of characters. A STRING! can be used as a literal constant or as variable.
DATATYPE
string: "e;This value is a string"e;
N.A.
Not applicable on category
STRING! he string data type is a sequence of characters. A STRING! can be used as a literal constant or as variable. Meta uses a C lika approach to strings. Strings are immutable by their nature. Changing them requires allocating a new string to hold the new value, but Meta takes care of all of the work needed to handle this.
number: 1024
string: TO STRING! number
string is now "e;1024"e;
(TO STRING!)