diff options
-rwxr-xr-x | run.sh | 2 | ||||
-rw-r--r-- | test.lua | 25 |
2 files changed, 26 insertions, 1 deletions
@@ -59,4 +59,4 @@ echo Lisp hyperfine "ecl --shell test.lisp" echo Lua - +hyperfine "lua test.lua" diff --git a/test.lua b/test.lua new file mode 100644 index 0000000..3d26a40 --- /dev/null +++ b/test.lua @@ -0,0 +1,25 @@ +-- Lua + +function gcd(a, b) + if b > 0 then + return gcd(b, a % b); + else + return a; + end +end + +print("test"); + +N = 1000; +A = {}; +for i = 1, N do + A[i] = i - 1; +end + +ans = 0; +for _, i in ipairs(A) do + for _, j in ipairs(A) do + ans = gcd(i, j) + ans; + end +end +print(ans); |