brainfuck-tut 0.5.1.0 → 0.5.1.1
raw patch · 2 files changed
+7/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
brainfuck-tut.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: brainfuck-tut-version: 0.5.1.0+version: 0.5.1.1 synopsis: A simple BF interpreter. -- description: license: BSD3@@ -14,6 +14,10 @@ build-type: Simple -- extra-source-files: cabal-version: >=1.18++source-repository head+ type: git+ location: git@gitlab.com:cpp.cabrera/brainfuck-tut.git library exposed-modules:
src/Language/Brainfuck/Types.hs view
@@ -32,10 +32,10 @@ -- |`Term` represents the abstract syntax for the BF language data Term- = IncDP -- ^ >+ = IncDP -- ^ \> | DecDP -- ^ < | IncByte -- ^ +- | DecByte -- ^ -+ | DecByte -- ^ \- | OutByte -- ^ . | InByte -- ^ , | JumpForward -- ^ [