sim: labels and comments are now shown
[calu.git] / 3a_asm / Control / Monad / RWS.hs
1 -----------------------------------------------------------------------------
2 -- |
3 -- Module      :  Control.Monad.RWS
4 -- Copyright   :  (c) Andy Gill 2001,
5 --                (c) Oregon Graduate Institute of Science and Technology, 2001
6 -- License     :  BSD-style (see the file libraries/base/LICENSE)
7 --
8 -- Maintainer  :  libraries@haskell.org
9 -- Stability   :  experimental
10 -- Portability :  non-portable (multi-param classes, functional dependencies)
11 --
12 -- Declaration of the MonadRWS class.
13 --
14 --      Inspired by the paper
15 --      /Functional Programming with Overloading and
16 --          Higher-Order Polymorphism/,
17 --        Mark P Jones (<http://web.cecs.pdx.edu/~mpj/>)
18 --          Advanced School of Functional Programming, 1995.
19 -----------------------------------------------------------------------------
20
21 module Control.Monad.RWS (
22     module Control.Monad.RWS.Lazy
23   ) where
24
25 import Control.Monad.RWS.Lazy
26