Skip to content

Instantly share code, notes, and snippets.

@fjolnir
Created April 7, 2012 13:18
Show Gist options
  • Save fjolnir/2328821 to your computer and use it in GitHub Desktop.
Save fjolnir/2328821 to your computer and use it in GitHub Desktop.
local _docTable = {}
function document(docStr)
return function(thingToDocument)
_docTable[thingToDocument] = docStr
end
end
document[[Adds documentation for a function]](document)
function help(thingToLookup)
local ret = _docTable[thingToLookup] or "Help not found"
print(ret)
return ret
end
help(document)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment