We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-- test.lua local fleece = require "fleece" local tbl = {1,2,3} local result = fleece.json(tbl) print(result)
It works just fine by /usr/bin/lua :
$ lua test.lua $ [1,2,3]
However, it shows [typeless data] when it comes to luajit:
$ luajit test.lua $ [typeless data]
The version of lua and luajit is:
$ luajit -v $ LuaJIT 2.0.2 -- Copyright (C) 2005-2013 Mike Pall. http://luajit.org/ $ $ lua -v $ Lua 5.1.5 Copyright (C) 1994-2012 Lua.org, PUC-Rio
Does anyone know how to solve this issue?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It works just fine by /usr/bin/lua :
However, it shows [typeless data] when it comes to luajit:
The version of lua and luajit is:
Does anyone know how to solve this issue?
The text was updated successfully, but these errors were encountered: