From a6ed0b63067701f8ebe887321ef26c76f86e6815 Mon Sep 17 00:00:00 2001 From: Wesley Moore Date: Wed, 7 Dec 2022 08:16:56 +1000 Subject: [PATCH] Update 2022 README --- 2022/README.md | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/2022/README.md b/2022/README.md index bf90c0d..18dacd4 100644 --- a/2022/README.md +++ b/2022/README.md @@ -1,24 +1,16 @@ -# advent_of_code +# Advent of Code 2022 -[![Package Version](https://img.shields.io/hexpm/v/advent_of_code)](https://hex.pm/packages/advent_of_code) -[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/advent_of_code/) +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. -A Gleam project +The Gleam code was written against version 0.25 of the language. -## Quick start +## Run ```sh -gleam run # Run the project -gleam test # Run the tests -gleam shell # Run an Erlang shell +gleam run run n # Run AoC day n ``` -## Installation - -If available on Hex this package can be added to your Gleam project: - -```sh -gleam add advent_of_code -``` - -and its documentation can be found at . +[Gleam]: https://gleam.run/