blob: f79863919313de3c607c93aa8959395c44fda72a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#+title: README
#+author: Aryadev Chavali
#+options: toc:nil
A little Haskell program to test my skills/make something genuinely
useful for myself. This program takes an integer/pair of
integers/list of integers and, with some flags, lists properties of
the input. Current features are listed below.
* CLI
- [X] Show whether numbers are prime
- [X] List factors of a number
- [X] Get highest common factor of two numbers
- [X] General list of info for a list of numbers
* Website
- [ ] Ability to handle routesa and 404s
- [ ] Form on '/' route POSTs body of form to '/input' route
- [ ] '/input' route does computation then returns a new view with
result
* Dependencies
For website
- wai
- warp
- network
- http.types
|