diff --git a/.lune/hello_lune.luau b/.lune/hello_lune.luau index 01a04a6..5055a27 100644 --- a/.lune/hello_lune.luau +++ b/.lune/hello_lune.luau @@ -7,7 +7,7 @@ print("Hello, lune! 🌙") ]==] local module = require(".lune/module") -module.hello() +module.sayHello() --[==[ EXAMPLE #2 diff --git a/.lune/module.luau b/.lune/module.luau index 6c3faf0..c64e8a7 100644 --- a/.lune/module.luau +++ b/.lune/module.luau @@ -1,6 +1,6 @@ local module = {} -function module.hello() +function module.sayHello() print("\nHello from a module! 🧩") end