Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

https://www.lua.org/pil/2.3.html

You can't declare integer, but you can operate with variables like with integers using regular arithmetic operators: + - * % except /

Lua has special floor division operator // for such cases. The result of x = a // b is always integer value.

https://www.lua.org/manual/5.3/manual.html#3.4.1

Ok. I get it. Thanks!