|
|
|
|
|
by exDM69
5070 days ago
|
|
> Probably worth adding that Qt being C++ is itself a problem Yep. C++ is what I call a "dead end" language. If you write your code in C++, it will be only usable from C++. If you want to use it from Python, Ruby or whatever, you'll need a C shim in between. If it were written in C, you could use ctypes and other similar means to do FFI quickly. Unfortunately, most languages other than C are more or less a dead end. |
|
Except for Java, where you can reuse code directly with JVM-compiling stacks like Clojure.