RosettaCodeData/Task/Execute-a-system-command/Icon/execute-a-system-command-1.icon
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

6 lines
111 B
Text

procedure main()
write("Trying command ",cmd := if &features == "UNIX" then "ls" else "dir")
system(cmd)
end