csv-export

About

Advent of code tools.

Installation

Import the following packages in your crate:

toml aoc-toolbox = "0.1.0" aoc-toolbox-derive = "0.1.0"

Usage

Main generation

You can mark solvers in your code:

```rust

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

fn solveday01part1(filename: Option<&str>) -> String { // ... } ```

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

rust aoc_main!(2021);

Limitations

Motivation

This tool was intended for my purpose only.

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