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?
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 +
.