Menambahkan nomor ke cetak-mudah-

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.
dl.idiot..