Question about the design of the language

I was messing around with the language and realized string concat must be done with

string(x...)

any reason why

+(x...) = string(x...)

is not in the default libs?

Strings can be concatenated with *, instead of +.

2 Likes

See: FAQ: Why does Julia use * for string concatenation?.

5 Likes