13 lines
466 B
Haskell
13 lines
466 B
Haskell
|
|
-- | This module holds the 'Interaction' enum, this allows for nice qualified imports.
|
|
--
|
|
-- Also, it makes for smaller compilation units and easier changes, because I I just happen to know what's where.
|
|
|
|
module Language.Brainfuck.Instruction.Extended.Interaction (Interaction(..)) where
|
|
|
|
-- | All the Interactions with the outside world, I think it is safe to say that this is the final state of this module.
|
|
|
|
data Interaction
|
|
= Read
|
|
| Write
|
|
deriving (Show)
|