Changeset 205 for branches/interpreter2/Test.pas
- Timestamp:
- Apr 20, 2020, 1:10:44 AM (5 years ago)
- Location:
- branches/interpreter2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/interpreter2
- Property svn:ignore
-
old new 4 4 interpreter.res 5 5 heaptrclog.trc 6 Generated
-
- Property svn:ignore
-
branches/interpreter2/Test.pas
r204 r205 21 21 22 22 // While-Do 23 WriteLn('WhileDo'); 23 24 I := 5; 24 25 while I <> 0 do begin … … 27 28 end; 28 29 30 // Repeat-Until 31 I := 5; 32 WriteLn('RepeatUntil'); 33 repeat 34 WriteLn(IntToStr(I)); 35 I := I - 1; 36 until I = 0; 37 29 38 // For-To-Do 39 WriteLn('ForToDo'); 30 40 for I := 0 to 5 do begin 31 41 WriteLn(IntToStr(I));
Note:
See TracChangeset
for help on using the changeset viewer.