Skip to content

Strings

Jordan Leppert edited this page Jan 9, 2025 · 3 revisions

Strings are enclosed in single-quotes.

A single quote can be put into a string with a backslash in front of it: \'

A backslash can be put into a string by entering two backslashes: \\

Examples:

'hello'
'my name is \'Steve\''
'hello \\ goodbye'

Clone this wiki locally