Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giacomoguidotto/dit143
Content of the course "DIT143 - Functional Programming" offered at the University of Gothenburg
https://github.com/giacomoguidotto/dit143
functional-programming haskell
Last synced: about 2 months ago
JSON representation
Content of the course "DIT143 - Functional Programming" offered at the University of Gothenburg
- Host: GitHub
- URL: https://github.com/giacomoguidotto/dit143
- Owner: GiacomoGuidotto
- License: mit
- Created: 2024-11-05T14:29:48.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-12-24T12:47:53.000Z (about 2 months ago)
- Last Synced: 2024-12-24T14:41:32.216Z (about 2 months ago)
- Topics: functional-programming, haskell
- Language: Haskell
- Homepage: https://www.gu.se/en/study-gothenburg/functional-programming-dit143
- Size: 2.42 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# DIT143 - Functional Programming
[![Continuous Integration](https://github.com/GiacomoGuidotto/DIT143/actions/workflows/haskell.yaml/badge.svg)](https://github.com/GiacomoGuidotto/DIT143/actions/workflows/haskell.yaml)
This package contains the content of the course "DIT143 - Functional Programming" offered at the University of Gothenburg.
It is divided into labs, each of which is a self-contained Haskell project.## Getting started
use cabal to build the project:
```bash
cabal build
```run different test suites or executables with:
```bash
cabal run [test-suite-name]
```## Test suites
- `playground-test` - test suite for playground
- `lab1-test` - test suite for lab1
- `lab2-test` - test suite for lab2
- `lab3-test` - test suite for lab3## Executables
- `blackjack` - executable for blackjack game from lab2
- `calculator` - executable for calculator from lab4## Resources
- [Cabal user guide](http://haskell.org/cabal/users-guide/)
- [Haskell PVP](https://pvp.haskell.org/)