Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chtenb/afp
AFP practical assignments
https://github.com/chtenb/afp
Last synced: 24 days ago
JSON representation
AFP practical assignments
- Host: GitHub
- URL: https://github.com/chtenb/afp
- Owner: chtenb
- Created: 2013-09-11T10:16:06.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-01T11:56:43.000Z (about 11 years ago)
- Last Synced: 2023-08-14T14:28:01.091Z (about 1 year ago)
- Language: Haskell
- Homepage:
- Size: 1.08 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
AFP
===This is an awesome tutorial: http://adit.io/posts/2013-04-17-functors,_applicatives,_and_monads_in_pictures.html#monads
Here is another link to a nice resource about types: http://learnyouahaskell.com/making-our-own-types-and-typeclasses
How to create a cabal library
-----------------------------
Create a file _package_.cabal and include something like this:```
Name: BeimersBrinke
Version: 1.0
Cabal-Version: >= 1.2
Author: Chiel ten Brinke and Mattias Beimers
License: GPL
License-file: LICENSE
Category: Educational Assignment
Description: This is the first set of assignments
Build-Type: Simple
data-files: README.md,
profiling_smoothPerms.ps,
profiling_smoothPerms'.psLibrary
Build-Depends: base,
criterion,
QuickCheck
Exposed-modules: A2_5,
A7_1,
A8_1,
Profiling
```Then run `cabal sdist --zip` to produce a compressed package that can be easily distributed.