The reason is that your b.nim module doesn't have access to the std/tables module, so it can't use the Table APIs. There are two ways to fix this:
1. Add `export tables` to your a.nim 2. Add `import std/tables` to b.nim
The reason is that your b.nim module doesn't have access to the std/tables module, so it can't use the Table APIs. There are two ways to fix this:
1. Add `export tables` to your a.nim 2. Add `import std/tables` to b.nim