moonwave icon indicating copy to clipboard operation
moonwave copied to clipboard

Module.abc = function() isn't recognized

Open DazorPlasma opened this issue 1 year ago • 1 comments

--[=[
	This doesn't work.
]=]
Module.foo = function()
	print("hey")
end

--[=[
	This works.
]=]
function Module.bar()
	print("hello")
end

DazorPlasma avatar Jan 12 '24 17:01 DazorPlasma