Last active
March 18, 2018 22:45
-
-
Save eyelash/969375a141f1f52adb9c35de07056531 to your computer and use it in GitHub Desktop.
Rust Quine
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
| const S: &str = r#" | |
| fn main() { | |
| print!("const S: &str = r#\x22{}\x22#;{}", S, S); | |
| } | |
| "#; | |
| fn main() { | |
| print!("const S: &str = r#\x22{}\x22#;{}", S, S); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment