Tags: nicmendoza/mavo
Tags
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.