RosettaCodeData/Task/Execute-a-system-command/Phix/execute-a-system-command.phix

4 lines
97 B
Plaintext

string cmd = iff(platform()=WINDOWS?"dir":"ls")
system(cmd)
integer res = system_exec("pause",4)