fpc/fcl/tests/doecho.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

11 lines
123 B
ObjectPascal

program doecho;
uses sysutils;
var r : integer;
begin
for r := 1 to 25 do
writeln ('Line : ', inttostr (r));
end.