Re: Error: module names need to be unique per Nimble package;

2018-03-22 Thread dom96
The compiler uses a .nimble file in a similar way as Python uses the 
__init__.py files. To fix your issue you can just:


touch src/moje/a.nimble
touch src/moje/b.nimble


Should work then.


Re: Error: module names need to be unique per Nimble package;

2018-03-22 Thread domogled
thank very match.

I think, that correct path is


touch src/moje/a/a.nimble
touch src/moje/b/b.nimble


It works.