Orb Programming Language

While

while will repeatedly execute a block of instructions as long as its condition is met.

    while (>= x 0) {
        std.println "Countdown: " x;
        -- x;
    };