Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fpapado/aoc-2019-elm
Solutions to Advent of Code 2019, in Elm.
https://github.com/fpapado/aoc-2019-elm
advent-of-code-2019 aoc elm
Last synced: about 2 months ago
JSON representation
Solutions to Advent of Code 2019, in Elm.
- Host: GitHub
- URL: https://github.com/fpapado/aoc-2019-elm
- Owner: fpapado
- Created: 2019-12-12T11:06:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T11:54:51.000Z (about 2 years ago)
- Last Synced: 2024-04-13T18:27:15.322Z (9 months ago)
- Topics: advent-of-code-2019, aoc, elm
- Language: Elm
- Homepage:
- Size: 157 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elm Advent of Code 2019
Solutions to [Advent of Code][aoc] 2019, written in [Elm][elm].
This project is scaffolded with [elm-aoc-starter](https://github.com/fpapado/aoc-2019-elm).## Running
You will need [Node][node] and [npm][npm]. npm comes installed with Node.
It should not matter much which versions, though either way I'd recommend you use [nvm][nvm] to install Node. It works better without needing admin privileges for every npm installation.You will also need [git][git].
Then, in a terminal, like iterm or gnome terminal, run:
```shell
git clone https://github.com/fpapado/aoc-2019-elm.git
cd aoc-2019-elm
npm ci
npm test# npm run solve day part
npm run solve 1 1
```[aoc]: https://adventofcode.com/
[elm]: https://elm-lang.org/
[elm-test]: https://github.com/elm-explorations/test
[elm-flags]: https://guide.elm-lang.org/interop/flags.html
[node]: https://nodejs.org/en/
[npm]: https://www.npmjs.com/
[nvm]: https://github.com/nvm-sh/nvm#installation-and-update
[git]: https://help.github.com/en/github/getting-started-with-github/set-up-git