Adding strings

Lets introduce a new instruction, the + character, which is the add instruction. The add instruction can be used to combine two strings together into one string.

The german word for suffer, "kranken" and the german word for vehicle, "wagen"

ambulance = "kranken" + "wagen"

The value of ambulance is now a single string with the value "krankenwagen"

Here are some more examples

fullName = "John" + "Power"

In this case fullName now has the value "JohnPower"

We can add a space character to make it more readable, using lots of + instructions in a row.

fullName = "John" + " " + "Power"

fullName now has the value "John Power"