Skip to content

Instantly share code, notes, and snippets.

@eyelash
Last active March 18, 2018 22:45
Show Gist options
  • Select an option

  • Save eyelash/969375a141f1f52adb9c35de07056531 to your computer and use it in GitHub Desktop.

Select an option

Save eyelash/969375a141f1f52adb9c35de07056531 to your computer and use it in GitHub Desktop.
Rust Quine
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