We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
String literals are strings surrounded with double quotes:
String
“Hello World”
“John”
“Welcome, Isaac Shelton.”
In order to create String literals, the types String and StringOwnership must defined.
StringOwnership
In order to satisfy these requirements, you can do one of the following:
2.7/String.adept
2.7/basics.adept
String literals are references to constant global memory, and therefore have the StringOwnership::REFERENCE ownership.
StringOwnership::REFERENCE
They should NEVER be modified without first making a copy via make() or clone().
make()
clone()
Table of Contents