uu-cco-examples (empty) → 0.1.0.0
raw patch · 5 files changed
+38/−0 lines, 5 filesdep +ansi-terminaldep +basedep +uu-ccosetup-changed
Dependencies added: ansi-terminal, base, uu-cco
Files
- AUTHORS +2/−0
- LICENSE +1/−0
- Setup.lhs +4/−0
- src/PpATerm.hs +5/−0
- uu-cco-examples.cabal +26/−0
+ AUTHORS view
@@ -0,0 +1,2 @@+Stefan Holdermans <stefan@holdermans.nl> (Original author)+Atze Dijkstra <atze@uu.nl> (Maintainer)
+ LICENSE view
@@ -0,0 +1,1 @@+Copyright (c) 2008-2014 Utrecht University. All rights reserved.
+ Setup.lhs view
@@ -0,0 +1,4 @@+#! /usr/bin/env runhaskell++> import Distribution.Simple+> main = defaultMain
+ src/PpATerm.hs view
@@ -0,0 +1,5 @@+import CCO.Component (printer, ioWrap)+import CCO.Tree (parser)+import Control.Arrow ((>>>))++main = ioWrap (parser >>> printer)
+ uu-cco-examples.cabal view
@@ -0,0 +1,26 @@+name: uu-cco-examples+version: 0.1.0.0+synopsis: Utilities for compiler construction+description: A small utility library accompanying the course on+ Compiler Construction (INFOMCCO) at Utrecht Univerity.+license: BSD3+license-file: LICENSE+category: Compilers/Interpreters+copyright: (c) 2008-2014 Utrecht University+author: Stefan Holdermans <stefan@holdermans.nl>+maintainer: Atze Dijkstra <atze@uu.nl>+stability: provisional+homepage: https://github.com/UU-ComputerScience/uu-cco+build-type: Simple+cabal-version: >= 1.6+extra-source-files: AUTHORS++source-repository head+ type: git+ location: git://github.com/UU-ComputerScience/uu-cco.git++executable uu-cco-pp-aterm+ main-is: PpATerm.hs+ build-depends: base >= 4 && < 5, ansi-terminal >= 0.5.0, uu-cco >= 0.1.0.0+ other-modules: + hs-source-dirs: src