Execute a system command: Difference between revisions

Add Nimrod
(added FunL)
(Add Nimrod)
Line 815:
return
</lang>
 
=={{header|Nimrod}}==
<lang nimrod>import osproc
 
let exitCode = execCmd "ls"
let (output, exitCode2) = execCmdEx "ls"</lang>
 
=={{header|Objective-C}}==
Anonymous user