for to 100



for to 100
Smart pascal source code
var i, r: Integer; for i := 1 to 100 do r := i; if r <> 100 then WriteLn('r was ' + IntToStr(r)); {<<< RESULT - CONSOLE LOG >>> ----------------------------- 100 }