-
- Downloads
Add the possibility to concatenate strings
One can write `` string s; s = "foo" + "bar" + 0; `` Then `s` will contain "foobar0". Remark that `1+"foo"` is invalid for instance. First argument of the expression *must* be a string.
Please register or sign in to comment