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