Answers for "adding a number to the print-easy-"

Lua
0

adding a number to the print-easy-

local number = 1  --the number

print(number)
number = number + 1
print(number)

--run the code and see that you see 1 and then 2. thats bc i added a number with caculations.
Posted by: Guest on February-04-2022

Code answers related to "adding a number to the print-easy-"

Browse Popular Code Answers by Language