dodając do siebie liczby

--example... adding numbers to each other
local anumber = 3
local aOthernumber = 22

local theTwoNumbersInEachOther = anumber + aOthernumber
print(theTwoNumbersInEachOther) --you will see in console or output that there will be a 25. you can use this is in other code
dl.guy