You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implemented concatenate operator (&) and function (concatenate())
This is important because + only adds numbers, so we did not have a way
to concatenate before. Operator inspired from Ada. How it works: array
& string will join the array, array & array concatenates element-wise,
string & string will concat the strings.