String ConcatenationΒΆ

Note

This file exists only for clarity reasons: string concatenation is only a specific kind of amalgam value.

Many strings can be concatenated together to create one, big string.

Such operation is represented by putting side by side many strings. For instance, the following snippet:

'You wont ' 'believe I am ' 'one big string!'

would be translated to:

You wont believe I am one big string!

when evaluated.