brainfuchs-0.2.1: Minimal Brainfuck interpreter in Haskell
Safe HaskellSafe-Inferred
LanguageHaskell2010

AST

Documentation

data Cmd Source #

Constructors

Next 
Prev 
Incr 
Decr 
Print 
Input 
Loop [Cmd] 

Instances

Instances details
Show Cmd Source # 
Instance details

Defined in AST

Methods

showsPrec :: Int -> Cmd -> ShowS #

show :: Cmd -> String #

showList :: [Cmd] -> ShowS #

type AST = [Cmd] Source #