diff options
Diffstat (limited to '')
-rw-r--r-- | .test_.conf.lua | 4 |
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. |
2 | if type(jit) == 'table' then | 2 | if 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) |
4 | else | 4 | else |
5 | io.write(arg[0] .. ' is being run by Lua version ' .. _VERSION .. '\n') | 5 | print(arg[0] .. ' is being run by Lua version ' .. _VERSION) |
6 | end | 6 | end |
7 | 7 | ||
8 | return { | 8 | return { |