Exercise

Creating a WHILE loop

In this exercise, you will use the variable you created in the previous exercise you write a WHILE loop. Recall that structure:

WHILE some_condition 

BEGIN 
    -- Perform some operation here
END

Instructions

100 XP

Write a WHILE loop that increments counter by 1 until counter is less than 30.