Keyword: while
A loop running while an expression is met.
glang
# while [expression] { ... }
while 1 == 1 {
bark("oh no! this loop runs infinitely!!");
}