RosettaCodeData/Task/Execute-a-system-command/V-(Vlang)/execute-a-system-command.v

8 lines
156 B
Coq
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import os
fn main() {
result := os.execute('cmd /c dir')
if result.output !='' {println(result.output)}
else {println('Error: not working') exit(1)}
}