advent-of-code/2022/README.md

17 lines
440 B
Markdown
Raw Permalink Normal View History

2022-12-06 22:16:56 +00:00
# Advent of Code 2022
2022-12-01 07:01:32 +00:00
2022-12-06 22:16:56 +00:00
This year I decided to forego my usual Rust solutions and try to solve the
problems in [Gleam]. Gleam is a statically typed functional programming
language that runs on the Erlang virtual machine, or JavaScript engine
implemented in Rust. My code targets the Erlang VM.
2022-12-01 07:01:32 +00:00
2022-12-06 22:16:56 +00:00
The Gleam code was written against version 0.25 of the language.
2022-12-01 07:01:32 +00:00
2022-12-06 22:16:56 +00:00
## Run
2022-12-01 07:01:32 +00:00
```sh
2022-12-06 22:16:56 +00:00
gleam run run n # Run AoC day n
2022-12-01 07:01:32 +00:00
```
2022-12-06 22:16:56 +00:00
[Gleam]: https://gleam.run/