aboutsummaryrefslogtreecommitdiffstats
path: root/.test_.conf.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.test_.conf.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/.test_.conf.lua b/.test_.conf.lua
index e35fc72..1bd73c1 100644
--- a/.test_.conf.lua
+++ b/.test_.conf.lua
@@ -1,8 +1,8 @@
1-- This works coz LuaJIT automatically loads the jit module. 1-- This works coz LuaJIT automatically loads the jit module.
2if type(jit) == 'table' then 2if type(jit) == 'table' then
3 io.write(arg[0] .. ' is being run by ' .. jit.version .. ' under ' .. jit.os .. ' on a ' .. jit.arch .. '\n') 3 print(arg[0] .. ' is being run by ' .. jit.version .. ' under ' .. jit.os .. ' on a ' .. jit.arch .. '. Lua version ' .. _VERSION)
4else 4else
5 io.write(arg[0] .. ' is being run by Lua version ' .. _VERSION .. '\n') 5 print(arg[0] .. ' is being run by Lua version ' .. _VERSION)
6end 6end
7 7
8return { 8return {