>>107881839
>does it exist?
I don't know, but a well-defined program surely could answer that. Unfortunately, yours doesn't answer shit.
>I'm expecting some intriguing progress on the gorlberg conjecture from you, human.
Your question was if the program stopped or not, and I answered it. Since you didn't like the answer, you changed the program to a useless cycle-waster and now act smug about it. Accept that your precious impossible math problems have nothing to do with real code running on physical hardware.
fuck it, why not simplify your retarded moved goalpost >>107879926 a little if you're going to be a disingenuous fuck?
function isPrime(num) {
if(num <= 1n) return false;
for(let i = 2n; i < num; ++i) {
if(num % i === 0n) return false;
}
return true;
}
Comment too long. Click here to view the full text.