Difference between revisions of "String"
From King Arthur's Gold Wiki
(Created page with "String is used for storing strings of characters. <syntaxhighlight lang="cpp"> string s = "hello world" </syntaxhighlight>") |
m |
||
| (One intermediate revision by one other user not shown) | |||
| Line 1: | Line 1: | ||
| − | String is used for storing strings of characters. | + | <onlyinclude>String is used for storing strings of characters.</onlyinclude> |
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
string s = "hello world" | string s = "hello world" | ||
</syntaxhighlight> | </syntaxhighlight> | ||
| + | |||
| + | [[Category:Scripting]] | ||
Latest revision as of 16:42, 16 December 2012
String is used for storing strings of characters.
string s = "hello world"