Skip to content

Instantly share code, notes, and snippets.

@AdhirRamjiawan
Created August 30, 2017 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AdhirRamjiawan/dfaa6fab20212542ea01d1b604b8de0d to your computer and use it in GitHub Desktop.
Save AdhirRamjiawan/dfaa6fab20212542ea01d1b604b8de0d to your computer and use it in GitHub Desktop.
// 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