//! **DEFERRED** — matrix × matrix multiplication.
//!
//! Run: cargo run --example 22_matrix_multiplication
//!
//! This example requires `matmul` which is defined in RFC-010 reductions/matmul and not yet
//! implemented. It will be completed when RFC-010 lands in a future milestone.
//!
//! Tracking: https://github.com/nabbisen/matten/issues (RFC-010)
fn main() {
println!(
"Example '22_matrix_multiplication' is deferred pending RFC-010 (reductions / matmul)."
);
println!("Check back after the next milestone — or open a GitHub issue to prioritise it.");
}