Fix p7.ts

This commit is contained in:
Andrew Morris
2023-06-21 15:51:50 +10:00
parent b5ecc10b65
commit a2a940b5cb

View File

@@ -1,5 +1,5 @@
import { Range_primes } from "../helpers/range.ts";
export default function main() {
return Range_primes().at(10001);
return Range_primes().at(10_000);
}