diff options
Diffstat (limited to '')
| -rw-r--r-- | src/tesserae.nim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tesserae.nim b/src/tesserae.nim new file mode 100644 index 0000000..11f2fe0 --- /dev/null +++ b/src/tesserae.nim @@ -0,0 +1,13 @@ +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() |
