|
|
|
|
|
by dom96
2273 days ago
|
|
> One bit which I still hate is simply how imports work in Nim. My project pretty much has a header like file containing function and variable signatures which can be called from other files. You mean how `import` works or are you using `include`? If the latter then I would strongly discourage you from using it. As for the former, you can use `from module import nil` everywhere if you really want. |
|