Files
Nim/tests/stdlib/tos.nim
2014-01-13 02:10:03 +01:00

13 lines
231 B
Nim

# test some things of the os module
import os
proc walkDirTree(root: string) =
for k, f in walkDir(root):
case k
of pcFile, pcLinkToFile: echo(f)
of pcDir: walkDirTree(f)
of pcLinkToDir: nil
walkDirTree(".")