```ts print("foo" + 2 + true); ``` => ```lua print("foo" .. 2 .. true); --attempt to concatenate a boolean value ``` The string concat operator will only convert numbers to strings. Other types will cause an error (unlike TS which calls toString on all values);
=>
The string concat operator will only convert numbers to strings. Other types will cause an error (unlike TS which calls toString on all values);