|
|
|
|
|
by dgb23
2292 days ago
|
|
Isn’t the performance claim a bit of a misconception? Lua with JIT is very fast even compared to statically typed, compiled languages. The bottleneck doesn’t seem to be dynamic types or dispatch but rather relying on garbage collection. Another example of this would be Julia. Admittedly WASM is typically targeted by languages like C and Rust, but I wouldn’t put Lua in the same, general performance category as for example python or most other dynamically typed languages with dynamic dispatch. |
|