Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
// modules1.rs // Make me compile! Execute `rustlings hint modules1` for hints :) mod sausage_factory { pub fn make_sausage() { println!("sausage!"); } } fn main() { sausage_factory::make_sausage(); }