//// Oat documentation:
////
//// Progress helpers for linear completion indicators.
////
//// ## Anatomy
////
//// Use [`progress`](#progress) with [`value`](#value) and [`max`](#max) to show
//// task completion. Typed helpers are available for `Int` and `Float` values.
////
//// ## Recipe
////
//// ```gleam
//// import glaze/oat/progress
////
//// progress.progress([
//// progress.value_int(32),
//// progress.max_int(100),
//// ])
//// ```
////
//// ## References
////
//// - MDN `