This snippet looks like it should wait forever, but the wait command doesn't get compiled.
repeat wait 0
until false
Unlike other construct keywords like WHILE, IF, THEN and UNTIL, REPEAT ignores any command on the same line. The construct compiles without error, but the wait command is missing.
This snippet looks like it should wait forever, but the wait command doesn't get compiled.
Unlike other construct keywords like WHILE, IF, THEN and UNTIL, REPEAT ignores any command on the same line. The construct compiles without error, but the wait command is missing.