top | item 43943817

(no title)

lxpz | 9 months ago

Doesn't Haskell do this to some degree with the IO monad? Functions that are not supposed to do IO directly simply have a more specific type signature, like taking in a stream and returning a buffer for example.

discuss

order

tome|9 months ago

Yes, although it can be violated by unsafePerformIO and friends. Haskell's is not an "assured" system.