Execute a system command: Difference between revisions

Content added Content deleted
(added FunL)
(Add Nimrod)
Line 815: Line 815:
return
return
</lang>
</lang>

=={{header|Nimrod}}==
<lang nimrod>import osproc

let exitCode = execCmd "ls"
let (output, exitCode2) = execCmdEx "ls"</lang>


=={{header|Objective-C}}==
=={{header|Objective-C}}==