RosettaCodeData/Task/Execute-a-system-command/PureBasic/execute-a-system-command.basic
2023-07-01 13:44:08 -04:00

11 lines
178 B
Text

ImportC "msvcrt.lib"
system(str.p-ascii)
EndImport
If OpenConsole()
system("dir & pause")
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit")
Input()
CloseConsole()
EndIf