RosettaCodeData/Task/Execute-a-system-command/PureBasic/execute-a-system-command.purebasic

12 lines
178 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
ImportC "msvcrt.lib"
system(str.p-ascii)
EndImport
If OpenConsole()
system("dir & pause")
Print(#CRLF$ + #CRLF$ + "Press ENTER to exit")
Input()
CloseConsole()
EndIf