Skip to content

Instantly share code, notes, and snippets.

@aanwark
Last active May 31, 2019 05:32
Show Gist options
  • Save aanwark/c07ec525450d75ebf60668285a711c34 to your computer and use it in GitHub Desktop.
Save aanwark/c07ec525450d75ebf60668285a711c34 to your computer and use it in GitHub Desktop.
Remaining Cheat Sheet from Derek Banas Lua Tutorial (Lua Modules)
-- The module name and filename are the same
local convert = {}
function convert.ftToCm(feet)
return feet * 30.48
end
return convert
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment