Guest User

Untitled

a guest
Apr 23rd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. {-# OPTIONS -fglasgow-exts #-}
  2. import Control.Monad.Reader
  3.  
  4. class Action c where
  5. run :: c ()
  6. verify :: c Bool
  7.  
  8. data AnyAction = forall c. Action c => AnyAction c
Add Comment
Please, Sign In to add comment