mirror of
https://github.com/lune-org/lune.git
synced 2025-05-02 17:53:52 +01:00
7 lines
100 B
Text
7 lines
100 B
Text
local module = {}
|
|
|
|
function module.hello()
|
|
print("\nHello from a module! 🧩")
|
|
end
|
|
|
|
return module
|