home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex65.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  142 b   |  10 lines

  1. Program Example65;
  2.  
  3. { Program to demonstrate the Sqr function. }
  4. Var i : Integer;
  5.     
  6. begin
  7.   For i:=1 to 10 do
  8.     writeln (Sqr(i):3);
  9. end.
  10.