Difference between revisions of "Output/Input"

From HaskellWiki
Jump to navigation Jump to search
m (Redundant Haskell question removed)
m
 
(49 intermediate revisions by the same user not shown)
Line 1: Line 1:
  +
<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
[[Category:Theoretical foundations]]
 
  +
A purely functional program implements a <i>function</i>; it has no side effect. [...] if the side effect can’t be in the functional program, it will have to be outside it.
   
  +
<small>[https://web.archive.org/web/20210415200634/https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.13.9123&rep=rep1&type=pdf Tackling the Awkward Squad: monadic input/output, concurrency, exceptions, and foreign-language calls in Haskell], Simon Peyton Jones (pages 3-4 of 60). </small>
=== <u>Clearing away the smoke and mirrors</u> ===
 
  +
</div>
  +
  +
One technique has been used for similar tasks:
   
 
<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
 
<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
  +
This is discussed by Burton[https://academic.oup.com/comjnl/article-pdf/31/3/243/1157325/310243.pdf <span></span>], and is built on by Harrison[https://core.ac.uk/download/9835633.pdf <span></span>]. The effect of this proposal is to place the non-determinism <i>entirely</i> outside the software [...]
The implementation in GHC uses the following one:
 
   
  +
<small>[https://academic.oup.com/comjnl/article-pdf/32/2/162/1445725/320162.pdf Functional Programming and Operating Systems], Simon B. Jones and A. F. Sinclair (page 10 of 13).</small>
<haskell>
 
  +
</div>
type IO a = World -> (a, World)
 
</haskell>
 
   
  +
It can also be used to provide access to external resources:
An <code>IO</code>computation is a function that (logically) takes the state of the world, and returns a modified world as well as the return value. Of course, GHC does not actually pass the world around; instead, it passes a dummy “token,” to ensure proper sequencing of actions in the presence of lazy evaluation, and performs input and output as actual side effects!
 
   
  +
<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
<tt>[https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.168.4008&rep=rep1&type=pdf A History of Haskell: Being Lazy With Class], Paul Hudak, John Hughes, Simon Peyton Jones and Philip Wadler.</tt>
 
  +
The approach generalizes so that a program can make use of other run-time information such as the current time or current amount of available storage.
  +
  +
<small>[https://academic.oup.com/comjnl/article-pdf/31/3/243/1157325/310243.pdf Nondeterminism with Referential Transparency in Functional Programming Languages], F. Warren Burton (front page).</small>
 
</div>
 
</div>
   
  +
Perhaps it can be used for I/O...
...so what starts out as an I/O action of type:
 
  +
<br>
   
  +
__TOC__
<haskell>
 
  +
<sup> <sup>
World -> (a, World)
 
</haskell>
 
   
  +
----
is changed by GHC to approximately:
 
  +
=== <u>Details, details</u> ===
  +
  +
How does it work?
  +
  +
<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
  +
[...] supply each program with an extra argument consisting of an infinite (lazy) binary tree of values. (We choose a tree [...] since any number of subtrees may be extracted from an infinite tree). In practice, these values will be determined at run time (when used as arguments to a special function [...]), but once fixed will never change.
  +
</div>
  +
  +
...<i>“a special function”</i>: only one? More will definitely be needed! To keep matters [https://www.interaction-design.org/literature/article/kiss-keep-it-simple-stupid-a-design-principle simple], each value shall only be used <b>once</b> (if at all) as an argument to any such function.
   
 
<haskell>
 
<haskell>
  +
main' :: Tree Exterior -> ...
() -> (a, ())
 
  +
  +
-- section 2
  +
data Tree a = Node { contents :: a,
  +
left :: Tree a,
  +
right :: Tree a }
  +
  +
data Exterior -- the abstract value type
  +
getchar :: Exterior -> Char -- the special functions
  +
putchar :: Char -> Exterior -> () -- (add more as needed :-)
 
</haskell>
 
</haskell>
   
  +
Avoiding gratuitous repetition:
As the returned unit-value <code>()</code> contains no useful information, that type can be simplified further:
 
   
 
<haskell>
 
<haskell>
  +
type OI = Tree Exterior
() -> a
 
</haskell>
 
   
  +
getChar' :: OI -> Char
Why "approximately"? Because "logically" a function in Haskell has no observable effects.
 
  +
getChar' = getchar . contents
   
  +
putChar' :: Char -> OI -> ()
----
 
  +
putChar' c = putchar c . contents
=== <u>Previously seen</u> ===
 
  +
</haskell>
  +
<sup> </sup>
   
  +
==== An alternative abstraction ====
Variations of the type <code>() -> a</code> have appeared elsewhere:
 
   
  +
About those trees: are they really necessary? If <code>OI</code> was an abstract data type, the use of trees could at least be confined to the implementation:
* page 2 of 13 in [https://fi.ort.edu.uy/innovaportal/file/20124/1/22-landin_correspondence-between-algol-60-and-churchs-lambda-notation.pdf A Correspondence Between ALGOL 60 and Church's Lambda-Notation: Part I] by Peter Landin:
 
:{|
 
|<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
 
   
The use of <code>λ</code>, and in particular (to avoid an irrelevant bound variable) of <code>λ()</code> , to delay and possibly avoid evaluation is exploited repeatedly in our model of ALGOL 60. A function that requires an argument-list of length zero is called a ''none-adic'' function.
 
</div>
 
<sup> </sup>
 
 
<haskell>
 
<haskell>
  +
data OI
(\ () -> …) :: () -> a
 
  +
getChar' :: OI -> Char
  +
putChar' :: Char -> OI -> ()
 
</haskell>
 
</haskell>
|}
 
   
  +
...provided that single-use property applies directly to <code>OI</code> values (thereby deeming <i>“special”</i> any function which uses an <code>OI</code> argument). That includes the initial <code>OI</code> value supplied to each program:
* page 3 of [https://www.cs.bham.ac.uk/~udr/papers/assign.pdf Assignments for Applicative Languages] by Vipin Swarup, Uday S. Reddy and Evan Ireland:
 
  +
:{|
 
|<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
 
A value of type <code>Obs 𝜏</code> is called an ''observer''. Such a value observes (i.e. views or inspects) a state and returns a value of type <code>𝜏</code>. [...] An observer type <code>Obs 𝜏</code> may be viewed as an implicit function space from the set of states to the type <code>𝜏</code>.
 
</div>
 
<sup> </sup>
 
 
<haskell>
 
<haskell>
type Obs tau = State -> tau
+
main' :: OI -> ...
 
</haskell>
 
</haskell>
|}
 
   
  +
But most Haskell programs will need more:
* [https://image.slidesharecdn.com/lazyio-120422092926-phpapp01/95/lazy-io-15-728.jpg page 15] of ''Non-Imperative Functional Programming'' by Nobuo Yamashita:
 
   
:{|
 
 
<haskell>
 
<haskell>
type a :-> b = OI a -> b
+
part :: OI -> (OI, OI)
  +
part t = (left t, right t)
 
</haskell>
 
</haskell>
|}
 
   
  +
...than two <code>OI</code> values:
* [http://h2.jaguarpaw.co.uk/posts/mtl-style-for-free MTL style for free] by Tom Ellis:
 
   
:{|
 
 
<haskell>
 
<haskell>
  +
parts :: OI -> [OI]
data Time_ a = GetCurrentTime (UTCTime -> a)
 
  +
parts t = let (t1, t2) = part t in t1 : parts t2
 
data Lock_ a = AcquireLock (Maybe Lock -> a) NominalDiffTime Key
 
| RenewLock (Maybe Lock -> a) NominalDiffTime Lock
 
| ReleaseLock (() -> a) Lock
 
 
</haskell>
 
</haskell>
|}
 
   
  +
So <code>OI</code> can be a tree-free abstract data type after all:
* page 2 of [https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.128.9269&rep=rep1&type=pdf Unique Identifiers in Pure Functional Languages] by Péter Diviánszky.
 
:{|
 
|<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
 
[...] The type <code>Id</code> can be hidden by the synonym data type
 
<pre>
 
:: Create a :== Id -> a
 
</pre>
 
</div>
 
<sup> </sup>
 
<haskell>
 
type Create a = Id -> a
 
</haskell>
 
|}
 
   
* page 26 of [https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.91.3579&rep=rep1&type=pdf How to Declare an Imperative] by Philip Wadler:
 
:{|
 
|<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
 
The type <code>'a io</code> is represented by a function expecting a dummy argument of type unit and returning a value of type <code>'a</code>.
 
<pre>
 
type 'a io = unit -> a
 
</pre>
 
</div>
 
<sup> </sup>
 
 
<haskell>
 
<haskell>
  +
data OI
type Io a = () -> a
 
  +
partOI :: OI -> (OI, OI)
  +
getChar :: OI -> Char
  +
putChar :: Char -> OI -> ()
 
</haskell>
 
</haskell>
|}
 
 
* [https://stackoverflow.com/questions/6647852/haskell-actual-io-monad-implementation-in-different-language/6706442#6706442 ysdx's answer] to [https://stackoverflow.com/questions/6647852/haskell-actual-io-monad-implementation-in-different-language this SO question]:
 
:{|
 
|<div style="border-left:1px solid lightgray; padding: 1em" alt="blockquote">
 
Let's say you want to implement <code>IO</code> in SML :
 
<pre>
 
structure Io : MONAD =
 
struct
 
type 'a t = unit -> 'a
 
 
end
 
</pre>
 
</div>
 
 
<sup> </sup>
 
<sup> </sup>
<haskell>
 
type T a = () -> a
 
</haskell>
 
|}
 
   
  +
----
* [https://stackoverflow.com/questions/45136398/is-the-monadic-io-construct-in-haskell-just-a-convention/45141523#45141523 luqui's answer] to [https://stackoverflow.com/questions/45136398/is-the-monadic-io-construct-in-haskell-just-a-convention this SO question]:
 
  +
=== <u>Other interfaces</u> ===
:{|
 
|<haskell>
 
newtype IO a = IO { runIO :: () -> a }
 
</haskell>
 
|}
 
   
  +
* [[Monad|monad]]
* [https://stackoverflow.com/questions/15418075/the-reader-monad/15419592#15419592 luqui's answer] to [https://stackoverflow.com/questions/15418075/the-reader-monad this SO question]:
 
:{|
 
|<haskell>
 
newtype Supply r a = Supply { runSupply :: r -> a }
 
</haskell>
 
|}
 
   
  +
:<haskell>
Of these, it is the implementation of <code>OI a</code> in Yamashita's [https://hackage.haskell.org/package/oi oi] package which is most interesting as its values are ''monousal'' - once used, their contents remain constant. This single-use property also appears in the implementation of the abstract <code>decision</code> type described by F. Warren Burton in [https://academic.oup.com/comjnl/article-pdf/31/3/243/1157325/310243.pdf Nondeterminism with Referential Transparency in Functional Programming Languages].
 
  +
type M a = OI -> a
   
  +
unit :: a -> M a
----
 
  +
unit x = \ u -> let !_ = partOI u in x
=== <code>IO</code><u>, redefined</u> ===
 
   
  +
bind :: M a -> (a -> M b) -> M b
Based on these and other observations, a reasonable generalisation of these examples would be <code>OI -> a</code>, which then implies:
 
  +
bind m k = \ u -> let !(u1, u2) = partOI u in
  +
let !x = m u1 in
  +
let !y = k x u2 in
  +
y
   
  +
getcharM :: M Char
<haskell>
 
type IO a = OI -> a
+
getcharM = getChar
  +
  +
putcharM :: Char -> M ()
  +
putcharM = putChar
 
</haskell>
 
</haskell>
   
  +
* [[Comonad|comonad]]:
Using Burton's ''pseudodata'' approach:
 
   
<haskell>
+
:<haskell>
  +
type C a = (OI, a)
-- abstract; single-use I/O-access mediator
 
data Exterior
 
getchar :: Exterior -> Char
 
putchar :: Char -> Exterior -> ()
 
   
  +
extract :: C a -> a
-- from section 2 of Burton's paper
 
  +
extract (u, x) = let !_ = partOI u in x
data Tree a = Node { contents :: a,
 
left :: Tree a,
 
right :: Tree a }
 
   
  +
duplicate :: C a -> C (C a)
-- utility definitions
 
  +
duplicate (u, x) = let !(u1, u2) = partOI u in
type OI = Tree Exterior
 
  +
(u2, (u1, x))
   
  +
extend :: (C a -> b) -> C a -> C b
getChar' :: OI -> Char
 
  +
extend h (u, x) = let !(u1, u2) = partOI u in
getChar' = getchar . contents
 
  +
let !y = h (u1, x) in
  +
(u2, y)
   
putChar' :: Char -> OI -> ()
+
getcharC :: C () -> Char
  +
getcharC (u, ()) = getChar u
putChar' c = putchar c . contents
 
   
part :: OI -> (OI, OI)
+
putcharC :: C Char -> ()
  +
putcharC (u, c) = putChar c u
parts :: OI -> [OI]
 
   
part t = (left t, right t)
 
parts t = let !(t1, t2) = part t in
 
t1 : parts t2
 
 
</haskell>
 
</haskell>
   
  +
* [[Arrow|arrow]]:
Of course, in an actual implementation <code>OI</code> would be abstract like <code>World</code>, and for similar reasons. This allows for a simpler implementation for <code>OI</code> and its values, instead of being based on (theoretically) infinite structured values like binary trees. That simplicity has benefits for the <code>OI</code> interface, in this case:
 
   
<haskell>
+
:<haskell>
  +
type A b c = (OI -> b) -> (OI -> c)
data OI
 
  +
part :: OI -> (OI, OI)
 
getChar' :: OI -> Char
+
arr :: (b -> c) -> A b c
  +
arr f = \ c' u -> let !x = c' u in f x
putChar' :: Char -> OI -> ()
 
  +
  +
both :: A b c -> A b' c' -> A (b, b') (c, c')
  +
f' `both` g' = \ c' u -> let !(u1:u2:u3:_) = partsOI u in
  +
let !(x, x') = c' u1 in
  +
let !y = f' (unit x) u2 in
  +
let !y' = g' (unit x') u3 in
  +
(y, y')
  +
where
  +
unit x u = let !_ = partOI u in x
  +
  +
getcharA :: A () Char
  +
getcharA = \ c' u -> let !(u1, u2) = partOI u in
  +
let !_ = c' u1 in
  +
let !ch = getChar u2 in
  +
ch
  +
  +
putcharA :: A Char ()
  +
putcharA = \ c' u -> let !(u1, u2) = partOI u in
  +
let !ch = c' u1 in
  +
let !z = putChar ch u2 in
  +
z
 
</haskell>
 
</haskell>
<sup> </sup>
 
   
  +
The <code>OI</code> interface can also be used to implement [https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.91.3579&rep=rep1&type=pdf I/O models used in earlier versions] of Haskell:
----
 
   
  +
* dialogues:
=== <u>Various questions</u> ===
 
   
  +
:<haskell>
* Is the C language "purely functional"?
 
  +
runD :: ([Response] -> [Request]) -> OI -> ()
  +
runD d u = foldr (\ (!_) -> id) () $ yet $ \ l -> zipWith respond (d l) (partsOI u)
   
  +
yet :: (a -> a) -> a
::No:
 
  +
yet f = f (yet f)
::* C isn't "pure" - it allows unrestricted access to observable effects, including those of I/O.
 
::* C isn't "functional" - it was never intended to be [[Referential transparency|referentially transparent]], which severely restricts the ability to use [[Equational reasoning examples|equational reasoning]].
 
   
  +
respond :: Request -> OI -> Response
* Can functional programming be liberated from the von Neumann paradigm?
 
  +
respond Getq u = let !c = getChar u in Getp c
  +
respond (Putq c) u = let !_ = putChar c u in Putp
   
  +
data Request = Getq | Putq Char
::That remains an [[Open research problems|open research problem]].
 
  +
data Response = Getp Char | Putp
  +
</haskell>
   
  +
* continuations:
* Can a language be "purely functional" or "denotative"?
 
   
  +
:<haskell>
::Conditionally, yes - the condition being the language is restricted in what domains it can be used in:
 
  +
type Answer = OI -> ()
   
  +
runK :: Answer -> OI -> ()
::* If a language is free of observable effects, including those of I/O, then the only other place where those effects can reside is within its implementation.
 
  +
runK a u = a u
::* There is no bound on the ways in which observable effects can be usefully combined, leading to a similarly-unlimited variety of imperative computations.
 
::* A finite implementation cannot possibly accommodate all of those computations, so a subset of them must be chosen. This restricts the implementation and language to those domains supported by the chosen computations.
 
   
  +
doneK :: Answer
* Why do our programs need to read input and write output?
 
  +
doneK = \ u -> let !_ = partOI u in ()
   
  +
getcharK :: (Char -> Answer) -> Answer
::Because programs are usually written for [https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.628.7053&rep=rep1&type=pdf practical] purposes, such as implementing domain-specific [https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.7.2089&rep=rep1&type=pdf little languages].
 
  +
getcharK k = \ u -> let !(u1, u2) = partOI u in
  +
let !c = getChar u1 in
  +
let !a = k c in
  +
a u2
   
  +
putcharK :: Char -> Answer -> Answer
----
 
  +
putcharK c a = \ u -> let !(u1, u2) = partOI u in
  +
let !_ = putChar c u1 in
  +
a u2
  +
</haskell>
   
  +
...and even <i>that</i> <s><i>world</i></s> state-passing style used in GHC, which is also used by [https://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.17.935&rep=rep1&type=pdf Clean], [https://staff.science.uva.nl/c.u.grelck/publications/HerhSchoGrelDAMP09.pdf Single-Assignment C] and as part of the I/O model used for the verification of interactive programs in [https://cakeml.org/vstte18.pdf CakeML], remembering that <code>OI</code> values can only be used once:
  +
  +
<haskell>
  +
newtype World = W OI
  +
  +
getcharL :: World -> (Char, World)
  +
getcharL (W u) = let !(u1, u2) = partOI u in
  +
let !c = getChar u1 in
  +
(c, W u2)
  +
  +
putcharL :: Char -> World -> World
  +
putcharL c (W u) = let !(u1, u2) = partOI u in
  +
let !_ = putChar c u1 in
  +
W u2
  +
</haskell>
  +
<sup> </sup>
  +
  +
----
 
=== <u>See also</u> ===
 
=== <u>See also</u> ===
   
* [[IO, partible-style]]
+
* [[Plainly partible]]
  +
* [[Disposing of dismissives]]
 
* [[IO then abstraction]]
 
* [[IO then abstraction]]
  +
* [https://okmij.org/ftp/Computation/IO-monad-history.html The IO monad in 1965]
 
  +
[[Category:Theoretical foundations]]

Latest revision as of 12:36, 1 January 2024

A purely functional program implements a function; it has no side effect. [...] if the side effect can’t be in the functional program, it will have to be outside it.

Tackling the Awkward Squad: monadic input/output, concurrency, exceptions, and foreign-language calls in Haskell, Simon Peyton Jones (pages 3-4 of 60).

One technique has been used for similar tasks:

This is discussed by Burton, and is built on by Harrison. The effect of this proposal is to place the non-determinism entirely outside the software [...]

Functional Programming and Operating Systems, Simon B. Jones and A. F. Sinclair (page 10 of 13).

It can also be used to provide access to external resources:

The approach generalizes so that a program can make use of other run-time information such as the current time or current amount of available storage.

Nondeterminism with Referential Transparency in Functional Programming Languages, F. Warren Burton (front page).

Perhaps it can be used for I/O...


Details, details

How does it work?

[...] supply each program with an extra argument consisting of an infinite (lazy) binary tree of values. (We choose a tree [...] since any number of subtrees may be extracted from an infinite tree). In practice, these values will be determined at run time (when used as arguments to a special function [...]), but once fixed will never change.

...“a special function”: only one? More will definitely be needed! To keep matters simple, each value shall only be used once (if at all) as an argument to any such function.

main' :: Tree Exterior -> ...

 -- section 2
data Tree a = Node { contents :: a,
                     left     :: Tree a,
                     right    :: Tree a }

data Exterior                      -- the abstract value type
getchar :: Exterior -> Char        -- the special functions
putchar :: Char -> Exterior -> ()  -- (add more as needed :-)

Avoiding gratuitous repetition:

type OI  =  Tree Exterior

getChar' :: OI -> Char
getChar' =  getchar . contents

putChar' :: Char -> OI -> ()
putChar' c = putchar c . contents

An alternative abstraction

About those trees: are they really necessary? If OI was an abstract data type, the use of trees could at least be confined to the implementation:

data OI
getChar' :: OI -> Char
putChar' :: Char -> OI -> ()

...provided that single-use property applies directly to OI values (thereby deeming “special” any function which uses an OI argument). That includes the initial OI value supplied to each program:

main' :: OI -> ...

But most Haskell programs will need more:

part    :: OI -> (OI, OI)
part t  =  (left t, right t)

...than two OI values:

parts   :: OI -> [OI]
parts t =  let (t1, t2) = part t in t1 : parts t2

So OI can be a tree-free abstract data type after all:

data OI
partOI  :: OI -> (OI, OI)
getChar :: OI -> Char
putChar :: Char -> OI -> ()


Other interfaces

type M a   =  OI -> a

unit       :: a -> M a
unit x     =  \ u -> let !_ = partOI u in x 

bind       :: M a -> (a -> M b) -> M b
bind m k   =  \ u -> let !(u1, u2) = partOI u in
                     let !x = m u1 in
                     let !y = k x u2 in
                     y

getcharM   :: M Char
getcharM   =  getChar

putcharM   :: Char -> M () 
putcharM   =  putChar
type C a         =  (OI, a)

extract          :: C a -> a
extract (u, x)   =  let !_ = partOI u in x

duplicate        :: C a -> C (C a)
duplicate (u, x) =  let !(u1, u2) = partOI u in
                    (u2, (u1, x))

extend           :: (C a -> b) -> C a -> C b
extend h (u, x)  =  let !(u1, u2) = partOI u in
                    let !y        = h (u1, x) in
                    (u2, y)

getcharC         :: C () -> Char
getcharC (u, ()) =  getChar u

putcharC         :: C Char -> ()
putcharC (u, c)  =  putChar c u
type A b c   =  (OI -> b) -> (OI -> c)

arr          :: (b -> c) -> A b c
arr f        =  \ c' u -> let !x = c' u in f x

both         :: A b c -> A b' c' -> A (b, b') (c, c')
f' `both` g' =  \ c' u -> let !(u1:u2:u3:_) = partsOI u in
                          let !(x, x')      = c' u1 in
                          let !y            = f' (unit x) u2 in
                          let !y'           = g' (unit x') u3 in
                          (y, y')
                where
                  unit x u = let !_ = partOI u in x

getcharA     :: A () Char
getcharA     =  \ c' u -> let !(u1, u2) = partOI u in
                          let !_        = c' u1 in
                          let !ch       = getChar u2 in
                          ch     

putcharA     :: A Char ()
putcharA     =  \ c' u -> let !(u1, u2) = partOI u in
                          let !ch       = c' u1 in
                          let !z        = putChar ch u2 in
                          z

The OI interface can also be used to implement I/O models used in earlier versions of Haskell:

  • dialogues:
runD :: ([Response] -> [Request]) -> OI -> ()
runD d u = foldr (\ (!_) -> id) () $ yet $ \ l -> zipWith respond (d l) (partsOI u)

yet :: (a -> a) -> a
yet f = f (yet f)

respond :: Request -> OI -> Response
respond Getq     u = let !c = getChar u in Getp c
respond (Putq c) u = let !_ = putChar c u in Putp

data Request  = Getq | Putq Char
data Response = Getp Char | Putp
  • continuations:
type Answer = OI -> ()

runK :: Answer -> OI -> ()
runK a u = a u

doneK :: Answer
doneK = \ u -> let !_ = partOI u in ()

getcharK :: (Char -> Answer) -> Answer
getcharK k   = \ u -> let !(u1, u2) = partOI u in
                      let !c        = getChar u1 in
                      let !a        = k c in
                      a u2

putcharK :: Char -> Answer -> Answer
putcharK c a = \ u -> let !(u1, u2) = partOI u in
                      let !_        = putChar c u1 in
                      a u2

...and even that world state-passing style used in GHC, which is also used by Clean, Single-Assignment C and as part of the I/O model used for the verification of interactive programs in CakeML, remembering that OI values can only be used once:

newtype World = W OI

getcharL :: World -> (Char, World)
getcharL (W u) = let !(u1, u2) = partOI u in
                 let !c = getChar u1 in
                 (c, W u2)

putcharL :: Char -> World -> World
putcharL c (W u) = let !(u1, u2) = partOI u in
                   let !_ = putChar c u1 in
                   W u2


See also