string
UTF-8 text. Write it with "double quotes", 'single quotes', or a `template`. Join pieces with .: or with commas after a template.
Syntax
Section titled “Syntax”string name = "Kartz";string title = 'Player';string line = `PlayerName is {player.Name}`;string also = `PlayerName is `, player.Name, `.`;Description
Section titled “Description”"..."and'...'are plain text.`PlayerName is {player.Name}`inserts expressions inside{ }.`PlayerName is `, player.Name, `.`joins a template with extra values in one expression.
A const int cannot be initialized with a string. Every statement ends with ;.
Example
Section titled “Example”string name = "Kartz";string key = name .: "_bag";post(`online: {name}`);