This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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!" | |
} |