Created
April 5, 2016 01:41
-
-
Save kscz/3dcbd722f2789db725a5ff792f7da710 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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