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

  1. Program Example78;
  2.  
  3. { Program to demonstrate the Power function. }
  4.  
  5. begin
  6.   Writeln (Power(exp(1.0),1.0):8:2); { Should print 2.72 }
  7. end.
  8.