From 9311edc7d80c4ce75b0465a6f27f9e59d97774a4 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Thu, 19 Jan 2023 17:57:43 -0500 Subject: [PATCH] Tweak module function name --- .lune/hello_lune.luau | 2 +- .lune/module.luau | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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