Files
Nim/tests/compile/tos.nim
2011-11-19 15:45:51 +01:00

13 lines
231 B
Nim
Executable File

# 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(".")