whileloop:
  if n=100 then goto endwhileloop
  inc n
  print n
goto whileloop
 
endwhileloop:
end