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

6 lines
119 B
Rust
Raw Normal View History

2022-12-12 11:56:38 +01:00
#![allow(incomplete_features)]
#![feature(test, generic_const_exprs)]
2022-11-29 12:29:49 +01:00
pub mod common;
2022-12-12 11:56:38 +01:00
pub mod grid;
2022-11-29 12:29:49 +01:00
pub mod teststuff;