Skip to content

Instantly share code, notes, and snippets.

@kscz
Created April 5, 2016 01:41
Show Gist options
  • Save kscz/3dcbd722f2789db725a5ff792f7da710 to your computer and use it in GitHub Desktop.
Save kscz/3dcbd722f2789db725a5ff792f7da710 to your computer and use it in GitHub Desktop.
fn main() {
println!("\"Yo Gandalf, how do we look?\", asked Frodo.");
println!("\"{}\" he replied", reference_eternal());
}
fn reference_eternal() -> &'static str {
&"Fly, you fools!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment