csv-export

About

Advent of code tools.

Installation

Import the following packages in your crate:

toml aoc-toolbox = "0.4"

Usage

Main generation

You can mark solvers in your code:

```rust use aoctoolbox::aocsolver;

[aoc_solver("day01", "part1")]

fn solveday01part1(input: String) -> String { // ... } ```

And then at the end of your main.rs, you can call this macro:

```rust use aoctoolbox::aocmain;

aoc_main!(2021); ```

Limitations

Motivation

This tool was intended for my purpose only.

I choosed to release it, so anyone can use it. Enjoy!