#running #run #cat

app quine

1 unstable release

0.1.0 Oct 6, 2022

#48 in #cat

MIT license

2KB

quine

The output of running the program:

$ cargo run
fn main() {
    let x = "fn main() {\n    let x = ";
    let y = "print!(\"{}{:?};\n    let y = {:?};\n    {}\", x, x, y, y)\n}\n";
    print!("{}{:?};
    let y = {:?};
    {}", x, x, y, y)
}

is the same as the source of the program itself:

$ cat quine.rs
fn main() {
    let x = "fn main() {\n    let x = ";
    let y = "print!(\"{}{:?};\n    let y = {:?};\n    {}\", x, x, y, y)\n}\n";
    print!("{}{:?};
    let y = {:?};
    {}", x, x, y, y)
}

No runtime deps