Nebular Spiral Patterns Simulation
You are now in control of a planet with a surface covered in swirling nebular spiral patterns. The simulation will continue for 100 iterations.
function startSimulation() {
for (i = 0; i < 100; i++) {
console.log("Iteration " + i + " completed.");
}
}