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"
}
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"
}