Bruk3/C-net

Add += functionality for strings

Closed this issue · 1 comments

E.g.,
int main () {
string a = "a";
a += "a";
return 0;
}
Output should reflect concatenation of a ("a") and "a" but currently is: (string : a+=(string : "a"));

resolved in string collection feature