Files
mvm/app/Command.hs

9 lines
209 B
Haskell

module Command (
Command(..)
) where
import qualified Instruction as I
data Command = Command { instr :: I.Instruction
, args :: [Int]
} deriving (Eq, Show)