mirror of
https://github.com/lune-org/lune.git
synced 2025-03-04 11:11:39 +00:00
8 lines
100 B
Text
8 lines
100 B
Text
![]() |
local module = {}
|
||
|
|
||
|
function module.hello()
|
||
|
print("\nHello from a module! 🧩")
|
||
|
end
|
||
|
|
||
|
return module
|