Keywords used to open blocks (i.e. `then`, `do`) should go to the same line as the statement:
```lua
if condition then
...
end
```
or:
```lua
while condition do
...
end
```
## Variables
General rule is to keep as much variables local as possible. If variable must be global then it should go to `industrialtest` table also under subnamespace if appropriate (the same applies to functions).