mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-18 23:11:36 +00:00
* follow up #18517 * Update lib/pure/os.nim Co-authored-by: Timothee Cour <timothee.cour2@gmail.com> * Update lib/pure/os.nim Co-authored-by: Timothee Cour <timothee.cour2@gmail.com>
This commit is contained in:
@@ -11,10 +11,11 @@
|
||||
## retrieving environment variables, reading command line arguments,
|
||||
## working with directories, running shell commands, etc.
|
||||
|
||||
runnableExamples("-r:off"):
|
||||
runnableExamples:
|
||||
let myFile = "/path/to/my/file.nim"
|
||||
assert splitPath(myFile) == (head: "/path/to/my", tail: "file.nim")
|
||||
assert parentDir(myFile) == "/path/to/my"
|
||||
when defined(posix):
|
||||
assert parentDir(myFile) == "/path/to/my"
|
||||
assert splitFile(myFile) == (dir: "/path/to/my", name: "file", ext: ".nim")
|
||||
assert myFile.changeFileExt("c") == "/path/to/my/file.c"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user