Reversed 8bit numbers by clock

for n=0,255 do for i=-7,0 do n=n/2-n%2/2+n%2/4^i end print(n)end

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

download

return to the top page