Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/luaconf/hello.lua')
-rw-r--r--sandbox/luaconf/hello.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/luaconf/hello.lua b/sandbox/luaconf/hello.lua
index 99bb1dc..fcf1408 100644
--- a/sandbox/luaconf/hello.lua
+++ b/sandbox/luaconf/hello.lua
@@ -1,6 +1,6 @@
-module(..., package.seeall)
+module("hello", package.seeall)
-- Declare the functions you want in your module
function hello()
-print "Hello world"
+ print "Hello world"
end