installed x86_64-12.2.0-release-win32-seh-rt_v10-rev0.7z
uploaded screen capture [Login to see the link]
if I try to execute then luart in \bin , I get next fatal error
Mingw-w64 runtime failure:
32 bit pseudo relocation at 00007FF61D56DDB0 out of range, targeting 00007FFFD76503A0, yielding the value 00000009BA0E25EC.
PS. I see you updated binaries online. that's nice. In my case I believe that's just user's mistake (I'm not familiar with compiling and linking from github ).
thank you, hope your project will grow
PS2
example json.lua line 12 is referring to global <JSON> (works as example of course)
just maybe to make it with local argument <str > in next release
script:AddCode('function decode() { return '..str..'; } ')
local function decodeJSON(str)
-- create a ScriptControl COM Object
local script = sys.COM("MSScriptControl.ScriptControl")
-- Set script language to JScript
script.Language = "JScript"
-- Add a JScript function
script:AddCode('function decode() { return '..JSON..'; } ')
-- Execute that function adn return the result (a sys.COM Object )
return script:Run("decode")
end