diff options
| author | pb <pb@9f8f72e9-4bf4-416e-b76e-7d4203597157> | 2010-03-14 15:00:19 +0000 |
|---|---|---|
| committer | pb <pb@9f8f72e9-4bf4-416e-b76e-7d4203597157> | 2010-03-14 15:00:19 +0000 |
| commit | 00b43501612224cb32a6cde6c3c97d2e39b49d59 (patch) | |
| tree | 3edb54a5f8ec6ee476adbcd7b24bbe0be7a52bd6 /Cmd.hs | |
| parent | 505b9940f6739dafd5a71fec8d7fdba4724d90ba (diff) | |
git-svn-id: https://ssl.buetow.org/repos/hsbot/trunk@29 9f8f72e9-4bf4-416e-b76e-7d4203597157
Diffstat (limited to 'Cmd.hs')
| -rw-r--r-- | Cmd.hs | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +module Cmd where + +import State + +data Cmd = Cmd String String (State -> IO ()) + +instance Show Cmd where + show (Cmd a b _) = a ++ " - " ++ b + + |
