I just found some programming test asking me to prove if the any even number between 6 and a million is equal to the sum of two prime numbers.

Well, it's running right now. Outputting to a file. This is the first prime number making proggy I've done so hopefully it works.

...The file is now at 19k. and the last number is 28019. Make that 20k...

Go compy go! Almost 1% done! (It'll slow done more as it approaches a million, right?) Then of course it needs to compare...

I didn't optimize this code at all. It actually just creates an array of prime numbers and loops through them ALL (^2 since it needs a subloop!)

Crazy ol me