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

6 lines
135 B
Rust
Raw Normal View History

2023-11-30 23:56:01 +01:00
#![allow(incomplete_features)]
#![feature(test, generic_const_exprs, step_trait)]
2023-11-30 23:56:01 +01:00
pub mod common;
pub mod position;
2023-11-30 23:56:01 +01:00
pub mod teststuff;