'Is the output of the following REPEAT UNTIL code complier-dependent?

Is the output of the following code compiler-dependent?

x<-10;
REPEAT UNTIL (x<10)
{
        x<-x+10;
}
DISPLAY(x);

One source says the REPEAT UNTIL part will not be executed so output will be 10, but some said the loop will be executed infinitely.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source