Skip to content

Instantly share code, notes, and snippets.

@JiriChara
Created September 11, 2012 10:31
Show Gist options
  • Save JiriChara/3697487 to your computer and use it in GitHub Desktop.
Save JiriChara/3697487 to your computer and use it in GitHub Desktop.
ALL CREDIT CARD PIN CODES IN THE WORLD
for i in 0..9999
if(i % 9 == 0)
printf("%04d \n", i)
else
printf("%04d \t", i)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment