Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kenny2github/gleam-aoc
Advent of Code 2023 in Gleam.
https://github.com/kenny2github/gleam-aoc
advent-of-code advent-of-code-2023 gleam gleam-lang
Last synced: 3 days ago
JSON representation
Advent of Code 2023 in Gleam.
- Host: GitHub
- URL: https://github.com/kenny2github/gleam-aoc
- Owner: Kenny2github
- License: mit
- Created: 2024-08-06T07:21:36.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-11T08:06:04.000Z (3 months ago)
- Last Synced: 2024-10-17T06:51:52.939Z (19 days ago)
- Topics: advent-of-code, advent-of-code-2023, gleam, gleam-lang
- Language: Gleam
- Homepage: https://adventofcode.com/2023
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Gleam Advent of Code
I'm learning [Gleam](https://gleam.run) by doing [Advent of Code](https://adventofcode.com) [2023](https://adventofcode.com/2023).
## Development
```sh
gleam run # Run the project
```
Requires an `inputs/dayN.txt` for every `dayN.gleam` that exists.## Testing
```sh
gleam test # Test the project
```
Requires an `inputs/dayN.txt` and an `outputs/dayN.txt` (as many lines as parts) for every `dayN_test.gleam` that exists.Alternatively, use `gleam test _demo` to run tests on the `inputs_demo` and `outputs_demo` directories instead.