-
Notifications
You must be signed in to change notification settings - Fork 2
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'