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