The following syntax defines an infinite loop:

loop {
	PRINT "This will execute infinitely"
}

This is fully equivalent to:

while true {
	PRINT "This will execute infinitely"
}

Twitter Facebook LinkedIn Youtube Slideshare Github