Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
-- This file:
--   http://angg.twu.net/HASKELL/Process1.hs.html
--   http://angg.twu.net/HASKELL/Process1.hs
--           (find-angg "HASKELL/Process1.hs")
-- Author: Eduardo Ochs <eduardoochs@gmail.com>
--
-- Basic tests for the "Process" library of GHC.
-- (defun e () (interactive) (find-angg "HASKELL/Process1.hs"))

-- (code-c-d "ghcprocess" "~/bigsrc/ghc-8.10.3/libraries/process/System/")
-- (find-ghcprocessfile "")
-- (find-ghcprocessfile "Process.hs" "to execute a simple @ls@")
-- (find-es "haskell" "calling-lua")
-- (find-es "haskell" "record-syntax")


import System.Process

-- do
--   (_, Just hout, _, _) <-
--        createProcess (proc "ls" []) { std_out = CreatePipe }




{-
* (eepitch-ghci)
* (eepitch-kill)
* (eepitch-ghci)
:load Process1.hs
createProcess (proc "ls" []) { std_out = CreatePipe }
:t createProcess (proc "ls" []) { std_out = CreatePipe }
:t createProcess (proc "ls" [])
:t proc
:set -v
:t { std_out = CreatePipe }

-}




-- Local Variables:
-- coding:  utf-8-unix
-- End: