lune/.lune/module.luau
Filip Tibell 7e57fed8d8
Use lune folder for scripts
Also improve cli logic for finding wanted script
2023-01-18 21:35:57 -05:00

7 lines
100 B
Text

local module = {}
function module.hello()
print("\nHello from a module! 🧩")
end
return module