[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Is it possible to perfectly convert the Python script (the one without peripheral operations, e.g: IO) to Lua script?
- From: "Pierre Chapuis" <catwell@...>
- Date: Fri, 29 Jan 2021 18:20:13 +0100
Here is a weird idea that might work:
- Compile Python to C with something like Nuitka
- Compile the C to WASM
- Find a WASM runtime in Lua (there are several floating around)
This is a very convoluted way to do it and will probably cause issues for slightly complicated programs though...