Comparison of programming languages (basic instructions): Difference between revisions

Content deleted Content added
Line 95:
| if ''condition'' then begin \n ''instructions'' \n end;
| if ''condition'' then begin \n ''instructions'' \n end\n else begin \n ''instructions'' \n end;
| repeat \n ''instructions'' \n until ''condition'';
|
| repeat \n ''instructions'' \n until ''condition'';
| for i := 1 to N do \n begin \n ''instructions'' \n end;
| case ''variable'' of \n ''meaning'': ''instructions''; \n default: ''instructions'' \n ... end;