Created
August 30, 2017 19:15
-
-
Save AdhirRamjiawan/dfaa6fab20212542ea01d1b604b8de0d to your computer and use it in GitHub Desktop.
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!" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment