Declare String

Declare literal Strings just like how you would in most other languages.

> "helloworld"
"helloworld"

Add Strings Together

You can add Strings together using the + operator.

> "hello" ++ "world"
"helloworld"

This can be chained as well.

> "hello" ++ " " ++ "world"
"hello world"