Skip to content

1.16.4

Compare
Choose a tag to compare
@FPtje FPtje released this 31 Oct 14:47
· 306 commits to master since this release

Fixed the following code giving a warning on the top level var being unused:

local var = 1

do
  local var = var
  print(var) 
end