adding numbers to each other

To add numbers together in Lua, you can use the "+" operator. Here's how you can do it step by step:

  1. Declare two variables and assign them the values of the numbers you want to add. For example:

lua local num1 = 5 local num2 = 3

  1. Add the two variables together using the "+" operator. Assign the result to a new variable. For example:

lua local sum = num1 + num2

In this case, the value of sum would be 8.

  1. You can then print the result to the console or use it in further calculations as needed. For example:

lua print(sum)

This would output 8 to the console.

That's it! By following these steps, you can add numbers together in Lua.