this repo has no description
1# Advent of Code 2024 - Gleam
2
3My take at the 2024 advent of code in the [Gleam](https://github.com/gleam-lang/gleam) programming language
4
5## Requirements
6- Gleam
7
8## Usage
9
10Put your AOC inputs into an `inputs` folder at the `pwd` of the program.
11
12The file must be named following the syntax `day{number}.txt` where `{number}` should be replaced by the day number, ie : `day7.txt` `day24.txt`
13
14```bash
15$ gleam run
16What day do you wanna run ?
17# Enter the day you wanna run in the prompt
18```
19
20## Extending
21There is an `src/days/day.gleam` file that exist, this file is used as a template for all other day files.
22
23After greating a file, for example `day10.gleam`, you must add it to the `src/aoc.gleam` in the case statement, for it to be launchable with the CLI.