aoc-lib 0.3.0

A library that lets you focus on problem-solving rather than boilerplate when doing Advent of Code
Documentation
# Advent of Code Helper Library

A library that lets you focus on problem-solving rather than boilerplate when doing Advent of Code.

_**This library is very early stages! Do not expect it to work yet!**_

## Installation

In your `Cargo.toml` dependencies section, put the following line to get the latest version:
```toml
[dependencies]
aoc-lib = "*"
```

## Usage

An example Advent of Code day may look like this:

```rust
// TODO
```