Hi everybody.
I'm seeking for a programming language that interacts with C++ the same way D does: https://dlang.org/spec/cpp_interface.html#cpp-templates
Does Nim has support for C++ templates when interfacing with C++?
This is a very newbie question, but I have to know if Nim will fit my future needs.
Thanks.
if you are curious about how good the interop is, checkout https://github.com/jmgomez/NimForUE . Look for importcpp . It's probably the biggest C++ project written in Nim ;)
It has things like built in multiple inheritance, dll hot reloading (including virtual functions, so vtable updates between reloads), PCH support and so on