Name
AddStr -- append substring to a string
Synopsis
var$ = AddStr(string1$, string2$)
Function
Appends string2$ to string1$ and returns the new string.

This function is obsolete and only here for compatibility reasons. Starting with Hollywood 2.0 you should use the string concatenation operator .. for concatenating two strings.

Inputs
string1$
source string
string2$
string to append
Results
var$
resulting string
Example
test$ = AddStr("Hello", " World!")
Print(test$)
This will print "Hello World!"

Show TOC