import os # This is just an example to get you started. A typical binary package # uses this file as the main entry point of the application. proc main() = # relative=true removes the folder name # for example tesserae/test -> test for tessera in walkDir("tesserae", relative=true, checkDir=true): echo tessera when isMainModule: echo("Hello, World!") main()