Testing
Nim Testing Guide: unittest2, Testament, and Doctests
Nim has three testing approaches: the standard library unittest module (simple but limited), unittest2 (modern replacement with better output), and testament (Nim's own compiler test tool used for its standard library). For application code, unittest2 is the recommended choice. Nim also supports doctests through the runnableExamples pragma. Key