-
When dumping a short string constant (like `"abc"`):
- Fengari sets `LUA_TLNGSTR` as the constant type
- PUC Lua sets `LUA_TSHRSTR` as the constant type
As a result, the `string.dump()` returns…
-
On vanilla Lua, scripts run in "C" locale (and can switch to another locale if they want).
On Fengari, Lua scripts run in OS-specific-locale and can't switch to "C" locale because `os.setlocale()` is…
-
Is it possible to call a macro from another macro? Consider the following example in order to alter the syntax as if it was another lisp variant:
Macros:
```
"fn*"
(fn [params body]
…
-
Hi
https://github.com/fengari-lua/fengari-web/blob/a9fb130f6851206e8a57be902af061e980be5610/src/fengari-web.js#L188
Reference: https://stackoverflow.com/q/33471547
-
I've run into a few issues getting this to work within our React Native app due to missing modules. Has anyone gotten this to work in React Native?
-
Hello,
Why would one want to use fengari over vvanders/wasm_lua or paulcuth/starlight?
Asking to understand the technology
-
In The Name Of GOD,
Hello,
How we can use the require("file") in Fengari-web
my code :
=============================================
```
require("Bisect")
local function f(x) return x-…
-
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/displayName
> It is usually preferred by consoles and profilers over func.name to display the name of a fun…
-
`os.getenv` is absent in `os` table.
`os.getenv` isn't mentioned in "NYI" list.
What's the status of this function?
-
Instead of loading the entire fegari/interop library, it would be nice instead to have a babel plugin that can "transpile" to javascript.
e.g.
```lua
local a = "hello world"
print(a)
```
w…