mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
7e57fed8d8
Also improve cli logic for finding wanted script
7 lines
100 B
Text
7 lines
100 B
Text
local module = {}
|
|
|
|
function module.hello()
|
|
print("\nHello from a module! 🧩")
|
|
end
|
|
|
|
return module
|