Last active
May 12, 2016 21:08
-
-
Save vurpo/260896077262650a9421eb1bc5a42cfb to your computer and use it in GitHub Desktop.
Simple enough Rust quine (no cheats, doesn't depend on environment, filename, file, encoding, etc.)
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
static CODE: &'static str = r#"fn main() {print!("static CODE: &'static str = r#\"{}\"{};\n{}", CODE, '#', CODE);}"#; | |
fn main() {print!("static CODE: &'static str = r#\"{}\"{};\n{}", CODE, '#', CODE);} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment