plus equals OR by Hendrik

import Data.Bits
r=[0..127]
s=show
main=mapM putStrLn[s i++" "++s j++":"++s(i+j)|i<-r,j<-r,fromEnum i.&.j<1]

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

download

return to the top page