Execute a system command: Difference between revisions

→‎{{header|Free Pascal}}: Removed duplicate entry
(→‎{{header|Free Pascal}}: Removed duplicate entry)
Line 340:
call system("ls")
end program SystemTest</lang>
 
=={{header|Free Pascal}}==
<lang Pascal>program ex01;
 
uses
SysUtils;
 
begin
ExecuteProcess('cmd', ' /c dir');
end.</lang>
 
=={{header|Go}}==