7 lines
87 B
Nim
7 lines
87 B
Nim
|
# pwd example
|
||
|
import osproc
|
||
|
|
||
|
let (output, errC) = osproc.execCmdEx("pwd")
|
||
|
|
||
|
echo output
|