Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chiroptical/maelstrom-hs
Working through https://github.com/jepsen-io/maelstrom in Haskell
https://github.com/chiroptical/maelstrom-hs
Last synced: 10 days ago
JSON representation
Working through https://github.com/jepsen-io/maelstrom in Haskell
- Host: GitHub
- URL: https://github.com/chiroptical/maelstrom-hs
- Owner: chiroptical
- Created: 2023-02-23T23:32:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-02-24T14:04:04.000Z (over 1 year ago)
- Last Synced: 2023-07-17T05:52:42.826Z (over 1 year ago)
- Language: Haskell
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
maelstrom-hs
---Attempting to work through [maelstrom][maelstrom] in Haskell.
Running the demo
---```
maelstrom test -w echo --bin demo/echo.rb --time-limit 5
```Running the echo server
---```
maelstrom test -w echo --bin (cabal exec which maelstromHs) --nodes n1 --time-limit 10 --log-stderr
```There is also `make maelstrom` but we'll need to separate the various
executables because `maelstromHs` is just the echo server at the moment.TODO
---- [ ] Data modeling for [maelstrom-protocol][this protocol]
- [ ] Need to start `src/Maelstrom/Types/Message.hs`
- [ ] Need to start `src/Maelstrom/Types/Body.hs`[maelstrom]: https://github.com/jepsen-io/maelstrom
[maelstrom-protocol]: https://github.com/jepsen-io/maelstrom/blob/main/doc/protocol.md