Jump to content

Strings: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

21 July 2026

  • curprev 18:3618:36, 21 July 2026 Dcurrent talk contribs 3,082 bytes +3,082 Created page with "Strings are sequences of characters used to represent text. OpenBOR Script stores strings as variants declared with the <code>char</code> prefix. <syntaxhighlight lang="c" line="">char message = "Hello world!";</syntaxhighlight> == Concatenation == The <code>+</code> operator concatenates strings. If either operand is a string, OpenBOR converts the other operand to text and returns a string. <syntaxhighlight lang="c" line> char label = "Health: "; int health = 100;..." Tag: Visual edit