aboutsummaryrefslogtreecommitdiff
path: root/run.sh
blob: 382af9840748fc6c6587e98122504a82378d89d9 (plain)
1
2
3
4
5
6
7
8
# Run it once,
rustc -o quine main.rs
./quine > main2.rs
# Run it from the generated sources
rustc -o quine2 main2.rs
./quine2 > main3.rs
# Check it's the same every time
md5sum main.rs main2.rs main3.rs