String
From Hack Wars Wiki
A string is, in a basic sense, a series of symbols and characters, more familiarly a series of letters, spaces, symbols, and/or numbers that do not have direct numerical value (as opposed to float and integer variables) . Strings are preceded and proceeded by quotation marks. Strings, as with other variables, are defined by naming the type, and then giving the variable a name. After the variable has been defined, it can either be initialised on the same line, or further on in the code.
Examples
string string_name = "value";
string helloWorld = "Hello, World. How are you today?";
string helloWorld; helloWorld = "Hello, World. How are you today?";
string helloWorld = "Hello, World. How are you today?"; message(getSourceIP(), helloWorld);
message(getSourceIP(), "Hello, World. How are you today?");
