string concatenation

String can be linked together with addition operator + or, like happen in php syntax, with the & operator

Syntax:
result = stringA & stringB
result = stringA + stringB

Example:
print "sdl" & "basic"
print "numbers" + 123456