Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

The loop you posted is a do-while loop; the while loop has a somewhat less intuitive translation to GOTO:

  loop_test: IF (NOT loop_condition) GOTO after_loop
    loop_body
    GOTO loop_test
  after_loop: etc...


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: