Which is better lua or c++?

Which is better lua or c++?

Which is better lua or c++?

C is a very efficient language, that is compiling to almost no overhead on most modern compilers (almost leaves still a lot to optimize, trust me with that), Lua on the other hand is one of the smallest embeddable HLL, that gives a lot for the 3 kb of code that it will “blow up” your application and the 120 kb of ...

  • 678.4K views
  • 2024-02-01 09:09:40
Show all Q/A Info

Does gmod use c++?
Garry's Mod includes the functionality to modify the game by developing scripts written in the Lua programming language.
2024-02-20 08:30:09


Is lua better than c++?
C is a very efficient language, that is compiling to almost no overhead on most modern compilers (almost leaves still a lot to optimize, trust me with that), Lua on the other hand is one of the smallest embeddable HLL, that gives a lot for the 3 kb of code that it will “blow up” your application and the 120 kb of ...
2024-01-17 12:25:52


Is java written in c++?
The Java compiler was originally written in C, using some C++ libraries. Later JVM releases added a JIT compiler to speed up the interpreter. The current Java compiler is written in Java, although the Java runtime is still written in C.
2023-08-15 18:51:43


Can lua call c++?
When Lua calls a C function, it uses the same kind of stack that C uses to call Lua. The C function gets its arguments from the stack and pushes the results on the stack. To distinguish the results from other values on the stack, the function returns (in C) the number of results it is leaving on the stack.
2023-07-18 00:55:24