Skip to content

Instantly share code, notes, and snippets.

@scalone
Created February 3, 2012 01:11
Show Gist options
  • Save scalone/1726879 to your computer and use it in GitHub Desktop.
Save scalone/1726879 to your computer and use it in GitHub Desktop.
Lua local variables
do
local cnt = 1
function inc ()
cnt = cnt + 1
return cnt
end
cnt = 5 -- Value will be changed after creating the function
end
print(inc()) --> Output 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment