Reversed 8bit numbers by teebee

a={0}for i=1,256 do a[i]=a[i/2+i%2/2]/2+128*(1-i%2)print(a[i])end

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page