A local function is able to access a global function but another function is not.Why?
local function a() go() end a() local function b() go() end local something=dis.... something:addEventListener("tap",b); function go() print("zzzz") end
function “a” produces an error.Function “b” works…But both are same type of functions right??