csv-export
About
Advent of code tools.
Installation
Import the following packages in your crate:
= "0.3"
= "0.3"
Usage
Main generation
You can mark solvers in your code:
And then at the end of your main.rs, you can call this macro:
aoc_main!;
Limitations
- For the moment, macros do not have context. Their state is not saved between calls (see this issue). I use a hack to save an internal state, so problems can appear...
- Each solver must have the following signature:
fn ;
Motivation
This tool was intended for my purpose only.
I choosed to release it, so anyone can use it. Enjoy!