Now that we have started with Loops..
_________________________________Keywords used in loops
for, while, repeat...until
_________________________________
Examples are :_________________________________
for( int i =1; i<=10;i=i+1)
begin
display "Hello world"
end
_________________________________
numeric i
i=1
while(i<=10)
begin
display "Hello World"
i=i+1
end
_________________________________