Skip to content

Instantly share code, notes, and snippets.

@jyrkive
Last active June 30, 2018 11:14
Show Gist options
  • Save jyrkive/fcdbda02cc4b14e66f1cfc641eb78be7 to your computer and use it in GitHub Desktop.
Save jyrkive/fcdbda02cc4b14e66f1cfc641eb78be7 to your computer and use it in GitHub Desktop.
local function good(t)
table.sort(t) -- OK, does what you expect
end
local function bad(table)
table.sort(table) -- error, the table doesn't have a field called "sort"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment