simpleprelude: A simplified Haskell prelude for teaching

[ bsd3, library, program, teaching ] [ Propose Tags ]

simpleprelude provides an alternative Prelude module for teaching as well as wrappers for ghc, and ghci to use them.

The simplified Prelude omits the type classes Num, Integral, and Ord. Instead it provides monomorphically typed arithmetic operators on Integer.

It also provides two executables: simple-ghc and simple-ghci which are wrappers around ghc and ghci. They are pre-configured to use the Prelude module of this library instead of base's Prelude module.

Release History:

  • 1.0.1.3: Bugfix concerning conditional expressions

  • 1.0.1.1: Fixing missing operator precedences

  • 1.0.1.0: Add a Haskell pre-processor to restore the feel of an implicityly imported Prelude although we use -XNoImplicitPrelude.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.0, 1.0.0.1, 1.0.0.2, 1.0.0.3, 1.0.1.0, 1.0.1.2, 1.0.1.3
Dependencies base (>3 && <5), ghc-paths (>=0.1 && <0.2), haskell-src-exts (>=1.11 && <1.12), process (>=1.0 && <1.2), uniplate (>=1.6 && <1.7) [details]
License BSD-3-Clause
Author Jean-Marie Gaillourdet
Maintainer jmg@cs.uni-kl.de
Category Teaching
Source repo head: hg clone https://softech.cs.uni-kl.de/hg/public/simpleprelude
Uploaded by JeanMarieGaillourdet at 2011-11-04T16:28:53Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables simple-pp, simple-ghci, simple-ghc
Downloads 4770 total (17 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for simpleprelude-1.0.1.3

[back to package description]
simpleprelude provides an alternative Prelude module for teaching as
well as wrappers for ghc, and ghci to use them.

The simplified Prelude omits the type classes Num, Integral, and
Ord. Instead it provides monomorphically typed arithmetic operators on
Integer.

It also provides two executables: simple-ghc and simple-ghci which are
wrappers around ghc and ghci. They are pre-configured to use the
Prelude module of this library instead of base's Prelude module.