The George Programming Language

Keyword: while

A loop running while a condition is true. Programmers might be familiar with the while loop.

while true {
    bark("oh no! this loop runs infinitely!!");
}