···11+# advent_of_code
22+My aoc code
33+Using gladvent
44+55+66+77+## General Workflow
88+99+1. run `gleam run -- new <target-day> --fetch=true --year=<target-year>`
1010+2. add example data to `inputs/<target-year>/<target-day>.example.txt`
1111+3. work on solution
1212+4. test solution using `gleam run -- run <target-day> --example=true`
1313+5. once it works run `gleam run -- run X`
+20
gleam.toml
···11+name = "advent_of_code"
22+version = "1.0.0"
33+44+# Fill out these fields if you intend to generate HTML documentation or publish
55+# your project to the Hex package manager.
66+#
77+# description = ""
88+# licences = ["Apache-2.0"]
99+# repository = { type = "github", user = "", repo = "" }
1010+# links = [{ title = "Website", href = "" }]
1111+#
1212+# For a full reference of all the available options, you can have a look at
1313+# https://gleam.run/writing-gleam/gleam-toml/.
1414+1515+[dependencies]
1616+gleam_stdlib = ">= 0.44.0 and < 2.0.0"
1717+gladvent = ">= 2.2.1 and < 3.0.0"
1818+1919+[dev-dependencies]
2020+gleeunit = ">= 1.0.0 and < 2.0.0"