diff options
author | dvs1 | 2024-10-28 23:30:04 +1000 |
---|---|---|
committer | dvs1 | 2024-10-28 23:30:04 +1000 |
commit | b1d60bb06a493b1bd02ea4f02ec7b3656063dba3 (patch) | |
tree | 6e91329cc7e7db31c31b0fa6dfc06ef907bff428 /.test_.conf.lua | |
parent | Minor tweaks. (diff) | |
download | JackOnAllDevices-b1d60bb06a493b1bd02ea4f02ec7b3656063dba3.zip JackOnAllDevices-b1d60bb06a493b1bd02ea4f02ec7b3656063dba3.tar.gz JackOnAllDevices-b1d60bb06a493b1bd02ea4f02ec7b3656063dba3.tar.bz2 JackOnAllDevices-b1d60bb06a493b1bd02ea4f02ec7b3656063dba3.tar.xz |
Various minor tweaks and cleanups.
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 { |