1//! Core utilities for `elvish` (used also inside macros)
23#![warn(missing_docs)]
45pub mod data;
6pub mod solution;
78// TODO: This should be an enum whenever enum const generics are possible
9/// Either part 1 (0) or part 2 (1)
10pub type Part = u8;