<string> + <string> [ + ... ]Copied!
new-array sarr type string new-hash h write-array sarr key 0 value "some string" write-hash h key "one" value "uno" set-string str = sarr[0] + " another string" + h["one"]Copied!
set-string var = "day" set-string newstr = "nice " + var + " it is!" print-out newstr new-lineCopied!
read-file dir+"/"+file to contentCopied!