moonwave
moonwave copied to clipboard
Module.abc = function() isn't recognized
--[=[
This doesn't work.
]=]
Module.foo = function()
print("hey")
end
--[=[
This works.
]=]
function Module.bar()
print("hello")
end