From f8574e0be89e7b523e64f656c93814d6948b2a33 Mon Sep 17 00:00:00 2001 From: onefang Date: Mon, 16 Mar 2020 14:49:09 +1000 Subject: Revert "The new sledjchisl binary, to replace the management scripts and web stuff." This reverts commit 34c5ee4c2a489a506e93d5b303fbc80b263747f0. --- src/script.lua | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/script.lua (limited to 'src/script.lua') diff --git a/src/script.lua b/src/script.lua deleted file mode 100644 index 1e4b909..0000000 --- a/src/script.lua +++ /dev/null @@ -1,18 +0,0 @@ --- script.lua - --- This works coz LuaJIT automatically loads the jit module. -if type(jit) == 'table' then - io.write('script.lua is being run by ' .. jit.version .. ' under ' .. jit.os .. ' on a ' .. jit.arch .. '\n') -else - io.write('script.lua is being run by Lua version ' .. _VERSION .. '\n') -end - --- Receives a table, returns the sum of its components. -io.write("The table the script received has:\n"); -x = 0 -for i = 1, #foo do - print(i, foo[i]) - x = x + foo[i] -end -io.write("Returning data back to C\n"); -return x -- cgit v1.1