Files
Nim/tests/compile/tos.nim
2013-03-16 23:53:07 +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(".")