0 Members and 3 Guests are viewing this topic.
how exactly do i make code "make logical sense"? whenever i do, u guys say its "too long" or "unreadable" or "too many crappy logic blocks", i even wrote comments on that code to make it make sense so i must be missing something really important, look, i will take any critique, whatever it is just tell me, but right now i just dont get it
procedure MyLoop();vari: integer;beginresult := 0; // You can omit the use of result.i := result;//here's the loop repeat i := i + 1; until i > 10 //end of the loopend;
While
procedure MyLoop2();vari: integer;begin i := i + 1; while i < 10 do WriteLn('var i is under 10')end;