aboutsummaryrefslogtreecommitdiffstats
path: root/.test_.conf.lua
diff options
context:
space:
mode:
authordvs12024-10-28 23:30:04 +1000
committerdvs12024-10-28 23:30:04 +1000
commitb1d60bb06a493b1bd02ea4f02ec7b3656063dba3 (patch)
tree6e91329cc7e7db31c31b0fa6dfc06ef907bff428 /.test_.conf.lua
parentMinor tweaks. (diff)
downloadJackOnAllDevices-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.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 {