Plaster
New
List
Login
common-lisp
default
anonymous
2024.12.11 13:50:45
;; test-cl-binary.asd ;; (defsystem #:test-cl-binary ;; :depends-on (#:bordeaux-threads) ;; :components ((:file "source"))) ;; (defsystem #:test-cl-binary/app ;; :depends-on (test-cl-binary) ;; :build-operation "program-op" ;; :build-pathname "test-cl-binary-app" ;; :entry-point "start") ;; source.lisp (uiop:define-package #:test-cl-binary (:use :cl) (:export #:start)) (in-package :test-cl-binary) (defun start () (bt:make-thread (lambda () (uiop:wait-process (uiop:launch-program '("sleep" "10"))))))
Raw
Annotate
Repaste
Edit