//! Shell Sort Example
//!//! Demonstrates usage of the generic, production-grade shell_sort algorithm.
uselunaris_engine::list::shell_sort::shell_sort;fnmain(){letmut data =vec![9,4,7,1,3,6,2,8,5];shell_sort(&mut data);println!("Sorted: {:?}", data);}