Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

9
LINES

< > BotCompany Repo | #1030394 // while / do-while to goTo

Document

1  
while (<cond>) <block>
2  
  => lbl1: if (!<cond>) goto lbl2;
3  
     <block>
4  
     goto lbl1;
5  
     lbl2:
6  
7  
do <block> while <cond>
8  
  => lbl1: <block>
9  
     if (<cond>) goto lbl1;

download  show line numbers   

Travelled to 4 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, vouqrxazstgt

No comments. add comment

Snippet ID: #1030394
Snippet name: while / do-while to goTo
Eternal ID of this version: #1030394/1
Text MD5: 3512811712bfd78ec2191d7911563db5
Author: stefan
Category:
Type: Document
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2020-12-11 01:58:13
Source code size: 181 bytes / 9 lines
Pitched / IR pitched: No / No
Views / Downloads: 176 / 67
Referenced in: [show references]