Timerix22

Results 2 comments of Timerix22

This issue is still unfixed for string concatination. The following code ```cs string s1 = "1"; string s2 = "2"; string s3 = "3"; string s4 = "4"; string s5...

P.S. In the case of interpolation there is no such issue. ```cs string() total = $"{s1}{s2}{s3}{s4}{s5}"; ``` All `FuString_Format()` calls are merged in one: ```c char *total = FuString_Format("%s%s%s%s%s", s1,...