Skip to content

Instantly share code, notes, and snippets.

@howmanysmall
Created January 6, 2020 18:11
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 howmanysmall/4714be1346eb079bc243777a548bf334 to your computer and use it in GitHub Desktop.
Save howmanysmall/4714be1346eb079bc243777a548bf334 to your computer and use it in GitHub Desktop.
local Functions = {}
local function TablePack(...)
return table.pack(...)
end
local function Regular(...)
return {...}
end
Functions["table.pack"] = function()
return TablePack("Hi", "Bye", 10, 15, 25, 23, 154, true, false, {})
end
Functions["Regular {}"] = function()
return Regular("Hi", "Bye", 10, 15, 25, 23, 154, true, false, {})
end
require(4185109675).new(1, "Title", Functions)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment