VertitimeX Technologies

R While Loop.

With the while loop we can execute a set of statements as long as a condition is TRUE
    while (1 < 2) 
    {
        ...
    }