#Checking if these are functionally the same for adding modules to a dictionary in a ModuleScript

1 messages · Page 1 of 1 (latest)

elfin grail
#

Unable to access Studio right now which is why I'm asking here 🙏

local module = {}

module.add = function(a, b)
  return a + b
end
local module = {}

function module.add(a, b)
  return a + b
end
#

Checking if these are functionally the same for adding modules to a dictionary in a ModuleScript

remote mountain
#

second one

elfin grail
remote mountain
#

no

#

or idk, probably not ill check rq

remote mountain