Skip to content

Instantly share code, notes, and snippets.

@ahkok
Created February 16, 2018 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahkok/70cf3749e59fe5181713d3e44d7cef32 to your computer and use it in GitHub Desktop.
Save ahkok/70cf3749e59fe5181713d3e44d7cef32 to your computer and use it in GitHub Desktop.
local a = 1
local function foo1()
print(a)
end
local function foo2(a)
print(a)
end
foo1(5)
foo2(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment