Files
Nim/tests/template/tdefault_nil.nim
2017-07-25 09:28:23 +02:00

15 lines
277 B
Nim

# bug #2629
import sequtils, os
template glob_rst(basedir: string = nil): untyped =
if baseDir.isNil:
to_seq(walk_files("*.rst"))
else:
to_seq(walk_files(basedir/"*.rst"))
let
rst_files = concat(glob_rst(), glob_rst("docs"))
when isMainModule: echo rst_files