Infinite Loops, break, continue

while (gallonsOfGas < 8) {
    move(30);
    gallonsOfGas--;
} while (true) {
    move(30);
    gallonsOfGas--;
} while (true) {
    move(30);
    if (!move) {continue;)
    gallonsOfGas--;
    if (gallonsOfGas <= 0) {break;}
}

Built-In Objects
Home

Internet II: Day 2