This wiki is out of date, use the continuation of this wiki instead

String

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 14:55, 1 August 2007 (edit)
Sandman (Talk | contribs)
m (Example)
← Previous diff
Revision as of 14:42, 20 February 2008 (edit) (undo)
Sandman (Talk | contribs)
m (Definition)
Next diff →
Line 5: Line 5:
'''STRING''' '''STRING'''
-'''String'''s are a sort of character array, combining characters to form text. Because the length of a '''string''' is dynamic, adding them is done easily. The quotes can be used to create strings.+'''String'''s are a sort of character array, combining characters to form text. Because the length of a '''string''' is dynamic, adding them is done easily. Doublequotes can be used to create strings.
== Example == == Example ==

Revision as of 14:42, 20 February 2008


Definition

STRING

Strings are a sort of character array, combining characters to form text. Because the length of a string is dynamic, adding them is done easily. Doublequotes can be used to create strings.

Example

Program strings;
Private
    String name;
    String surname;
Begin
    name = "Yo";
    surname = "Momma";

    say(name + " " + surname + " has entered.");
    say('User logged on: "' + name + " " + surname + '"');

    Loop
        frame;
    End
End
Personal tools