diff --git a/luaJIT/Source/simple_math_2.1.lua b/luaJIT/Source/simple_math_2.1.lua new file mode 100644 index 0000000..64a4052 --- /dev/null +++ b/luaJIT/Source/simple_math_2.1.lua @@ -0,0 +1,11 @@ +local test_int = 1122334455667788LL + +local test_cmplx = 0 + 5.5i + +local data = { + int_val = test_int, + cplx_val = test_cmplx +} + +print("Integer:", data.int_val) +print("Complex:", data.cplx_val) \ No newline at end of file diff --git a/luaJIT/bin/simple_math_2.1.ljbc b/luaJIT/bin/simple_math_2.1.ljbc new file mode 100644 index 0000000..c6a4334 Binary files /dev/null and b/luaJIT/bin/simple_math_2.1.ljbc differ