The zip "deflate" algorithm has instructions for "output the following N bytes" and "repeat the N bytes starting from the Mth byte backwards in the existing output". So naming these operations N(n) and P(n,m), show output in comments and no comments on lines that are just data:
Code: Select all
N(0) # (no output)
N(2) # "N(0) N(2)"
N(0)
N(2)
N(0) # (no output)
P(3,2) # "N(0) N(2) N(0)"
N(2) # "P(3,2) N(2)"
P(3.2)
N(2)
P(3,2) # "P(3,2) N(2) P(3,2)"
Note that in P(3,2) it outputs *three* items starting from the second-last printed, so the third item has not been printed yet - the third item ends up being the *first* one printed by the current statement.
It is quite clever. I wrote this from memory of reading a description of the method, so I hope it's correct - otherwise, try searching for "zip quine" and see if you can find the description yourself.