[Haskell] ANNOUNCE: HNOP 0.1

Donald Bruce Stewart dons at cse.unsw.edu.au
Fri Jun 30 03:38:52 EDT 2006


Alistair_Bayley:
> > From: haskell-bounces at haskell.org 
> > [mailto:haskell-bounces at haskell.org] On Behalf Of Ashley Yakeley
> > 
> > HNOP does nothing. Here's a sample session to illustrate:
> > 
> > $ ./hnop
> > $
> > 
> > The code is written entirely in plain Haskell 98 and makes no 
> > use of FFI 
> > or impure functions. The source is available in a darcs repository:
> > 
> >    darcs get http://semantic.org/hnop/
> > 
> > Possible applications include generated code size comparison for 
> > compilers, and as a starting point for more complex Haskell projects.
> 
> 
> Cool, that's awesome. But I don't see any Haddock docs? Or a Cabal
> Setup.hs? Would it be much trouble to add them?

Done. See attached patch. :)

-- Don
-------------- next part --------------

New patches:

[cabalise hnop
dons at cse.unsw.edu.au**20060630073543] {
addfile ./Setup.hs
hunk ./Setup.hs 1
+#!/usr/bin/env runhaskell
+import Distribution.Simple
+main = defaultMainWithHooks defaultUserHooks
addfile ./hnop.cabal
hunk ./hnop.cabal 1
+Name:                hnop
+Version:             0.0
+License-file:        LICENSE
+Author:              Ashley Yakeley.
+build-depends:       base
+
+Executable:          hnop
+Main-Is:             Main.hs
}

[haddock-ise hnop
dons at cse.unsw.edu.au**20060630073608] {
hunk ./Main.hs 4
+-- | main, do nothing
}

Context:

[initial version
Ashley Yakeley <ashley at semantic.org>**20060630034031] 
Patch bundle hash:
87f8e91810a0ead23187d03031374f7d838ecfcd


More information about the Haskell mailing list