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