RosettaCodeData/Task/Execute-a-system-command/Common-Lisp/execute-a-system-command-4.lisp
2023-07-01 13:44:08 -04:00

8 lines
227 B
Common Lisp

; uiop is part of the de facto build system, asdf, so should be available to most installations.
; synchronous
(uiop:run-program "ls")
; async
(defparameter *process* (uiop:launch-program "ls"))
(uiop:wait-process *process*)