Difference between revisions of "String"

(Created page with 'A string is a chain of characters, such as this text. Strings are defined by enclosing a portion of text using either single or double quotes: <source lang="lua">greeting = "He…')
 
(Added Category and i18n)
 
Line 5: Line 5:
 
<source lang="lua">greeting = "Hello World"
 
<source lang="lua">greeting = "Hello World"
 
farewell = 'Goodbye'</source>
 
farewell = 'Goodbye'</source>
 +
[[Category:Lua]]
 +
== Other Languages ==
 +
{{i18n|String}}

Latest revision as of 22:38, 10 August 2016

A string is a chain of characters, such as this text.

Strings are defined by enclosing a portion of text using either single or double quotes:

greeting = "Hello World"
farewell = 'Goodbye'

Other Languages