mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-24 18:28:12 +00:00
7 lines
103 B
Text
7 lines
103 B
Text
local module = {}
|
|
|
|
function module.sayHello()
|
|
print("\nHello from a module! 🧩")
|
|
end
|
|
|
|
return module
|