Thanks. import tables works
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
you have to also `import tables` inside module b
Did you import tables in the second file as well?
I have a table in a separate file `a.nim`
import std/tables
let
lookupTestTable* = {
"A1": """ 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
1 1 0 0 0 0 0 0
0 1 0 0 0 0 0 0"