factor/extra/io/launcher/launcher.factor

14 lines
349 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
! Copyright (C) 2007 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
USING: io.backend system ;
IN: io.launcher
HOOK: run-process io-backend ( string -- )
HOOK: run-detached io-backend ( string -- )
HOOK: <process-stream> io-backend ( string -- stream )
USE-IF: unix? io.unix.launcher
USE-IF: windows? io.windows.launcher