diff options
Diffstat (limited to 'Runnable.hs-boot')
-rw-r--r-- | Runnable.hs-boot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Runnable.hs-boot b/Runnable.hs-boot index 90dbe81..bef4e39 100644 --- a/Runnable.hs-boot +++ b/Runnable.hs-boot @@ -2,10 +2,10 @@ module Runnable where import Commands -data Runnable = forall r . (Exec r,Show r, Read r) => Run r +data Runnable = forall r . (Exec r,Read r) => Run r instance Read Runnable instance Exec Runnable -instance Show Runnable + |