RosettaCodeData/Task/Execute-a-system-command/Phix/execute-a-system-command.phix
2019-09-12 10:33:56 -07:00

3 lines
97 B
Text

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