View Single Post
10-06-20, 08:29 PM   #2
DahkCeles
A Cliff Giant
 
DahkCeles's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2020
Posts: 73
I cannot tell if you are asking how to concatenate the text, or to pass a value 'by reference' into a table?


The concatenation operator is ..

"something something something" .. myVar .. "something something."




When you add the following to a table, it actually passes a reference or pointer to it:
- another table
- a function

But when you add the following to a table, it evaluates and passes the current value only:
- a number
- a string
  Reply With Quote