Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
// The &'static here means the return type has a static lifetime. // This is a Rust feature that you don't need to worry about now. pub fn hello() -> &'static str { "Hello, World!" }