I have a question about declaring functions in lua.
I got the impression that public functions are declared as:
abc = function() end
Local / private functions:
local abc = function end
But I'm not sure what this notation is:
function abc() end
source share