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

6 lines
135 B
Rust
Raw Normal View History

#![allow(incomplete_features)]
#![feature(const_generics, const_evaluatable_checked)]
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;