Execute a system command: Difference between revisions

added standard ml
(→‎{{header|Ruby}}: ++ smalltalk)
(added standard ml)
Line 437:
 
<lang smalltalk>Smalltalk system: 'ls'.</lang>
 
=={{header|Standard ML}}==
Just run the command:
 
<lang ocaml>OS.Process.system "ls"</lang>
 
=={{header|Tcl}}==
Anonymous user