diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-01 11:36:15 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-01 11:36:15 +0000 |
| commit | db286c1c9605aed046ddb3b3ec9d57624ac0f71d (patch) | |
| tree | 127388b62012f04561771bbb35bb4b5908309574 /src | |
| parent | small restructure underway (diff) | |
added main executable
Diffstat (limited to 'src')
| -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() |
