For the past couple of years I have attempted Advent of Code puzzles in VBA. The repetitevness of the VBA code I was writing led me to devise a super flexible dictionary object library in C# which helped enormously in removing a lot of boilerplate code and enabling operations not normally easily available in VBA code.
As an exercise to occupy my hours during Covid lockdown, I was wondering if a similar dictionary ( a Com object accessed by Interop) could be achieved in Nim.
From my perspective the most challenging piece is the interop part.
I'd be enormously grateful for any pointers as to where I would start.
I have used nim a little to write some solutions to advent of code 2019 puzzles.