blob: eba90e674a689845f44d8b3b84b63aa22ca63cda (
plain)
1
2
3
4
5
6
7
8
|
{-# LANGUAGE ExistentialQuantification #-}
module Runnable where
import Commands
data Runnable = forall r . (Exec r,Read r,Show r) => Run r
instance Read Runnable
instance Exec Runnable
|