mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 08:54:53 +00:00
9 lines
273 B
Nim
9 lines
273 B
Nim
import std/[assertions, staticos, os]
|
|
|
|
block:
|
|
static:
|
|
doAssert staticDirExists("MISSINGFILE") == false
|
|
doAssert staticFileExists("MISSINGDIR") == false
|
|
doAssert staticDirExists(currentSourcePath().parentDir)
|
|
doAssert staticFileExists(currentSourcePath())
|