advent-of-code/2020/src/lib.rs

6 lines
119 B
Rust
Raw Normal View History

#![allow(incomplete_features)]
2021-11-22 14:34:40 +01:00
#![feature(generic_const_exprs, test)]
2020-12-10 14:44:42 +01:00
pub mod common;
2020-12-11 10:18:58 +01:00
pub mod grid;
pub mod teststuff;