initial; no loops

This commit is contained in:
hellerve
2015-06-23 14:42:21 +02:00
parent 81469e7210
commit 32be7ac2ff
3 changed files with 112 additions and 0 deletions

28
brainf*ck.cabal Normal file
View File

@@ -0,0 +1,28 @@
Name: brainfuck
Version: 0.1.0
Synopsis: Brainfuck interpreter and REPL.
Description:
brainfuck is a Haskell implementation of the programming
language Brainfuck(http://www.muppetlabs.com/~breadbox/bf/).
License: GPL
License-file: LICENSE
Author: Veit Heller <veitheller.de>
Maintainer: Veit Heller <github.com/hellerve>
Bug-Reports: http://github.com/hellerve/brainfuck/issues
Build-Type: Simple
Category: Compilers/Interpreters, Language
Tested-with: GHC == 7.8.4, GHC == 7.6.3
Cabal-Version: >= 1.2
Extra-Source-Files: README.md
LICENSE
Source-Repository head
Type: git
Location: git://github.com/hellerve/brainfuck.git
Executable brainfuck
Build-Depends: base, containers, haskeline
Extensions: ExistentialQuantification CPP
ghc-options: -Wall -Werror -O2
Main-is: brainf*ck.hs