Comparison of programming languages (basic instructions): Difference between revisions

Content deleted Content added
m Other types: syntaxhighlight
m Execution of commands: syntaxhighlight
Line 3,437:
|-
| [[Objective-C]]
| <codesyntaxhighlight lang="objc" inline>[NSTask launchedTaskWithLaunchPath:(NSString *)path arguments:(NSArray *)arguments];</codesyntaxhighlight>
|
|-
Line 3,505:
|-
| [[OCaml]]
| <code>Sys.command ''command,'', Unix.open_process_full ''command env (stdout, stdin, stderr),...''</code>
| <code>Unix.create_process ''prog args new_stdin new_stdout new_stderr, ...''</code>
| <code>Unix.execv ''prog args''</code><br/>or<br/><code>Unix.execve ''prog args env''</code>
Line 3,550:
|-
| [[Windows PowerShell]]
| <code><nowikisyntaxhighlight lang="ps1" inline>[Diagnostics.Process]::Start(command)</nowiki></codesyntaxhighlight>
| <code>«Invoke-Item »''program arg1 arg2 ...''</code>
|