I have a question about following Nim compiler/language use case: suppose, I created a library and want to share it's functionality with others. But, I do not want to share the source code, but just a binary distribution plus an interface. This use case can be solved by creating a C-header file with the interface definition.
The question: is there a proper way to share the interface definition using not C, but Nim language?
