Twin primes by murky-satyr

for p=3,2e3 do
i=2
while(p+2)*p%i>0 do i=i+1 end
i=i<p or print(p..','..p+2)end

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

download

return to the top page