I want to understand the usage of continue.
As per the manual the continue should be used within a loop which means either in while or for statements. When I try to compile the following code, it compiles successfully (I thought it will throw compile error saying that illegal continue usage with block b1)
block b1:
while true:
continue b1
echo("do not print")
Is there any meaning to using continue with block statement?