MATLAB: What does it mean when you put Loop = 1; in a program

loopwhilewhile loopwhile loops

this is just a random question but i noticed on a while loop program i was reading written by someone else that they defined
loop = 1
then when they began the while loop they started it off as while (loop). what does this do to a while loop? i usually see some condition being evaluated for while before a condition statement is presented but here im not familiar with why the while loop was used this way. this is an example of what im looking at:
loop = 1;
%initialize loop
while(loop)
statement
statement

Best Answer

while 1%continuous loop until broken from within
if
break;
end
end