fpc/tests/webtbs/tw4013.pp
Jonas Maebe 84445cd6c0 * use math
git-svn-id: trunk@6002 -
2007-01-16 17:58:12 +00:00

14 lines
208 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 4013 }
{ Submitted by "Miguel Garcia-Blanco" on 2005-05-25 }
{ e-mail: mgbonline@hotmail.com }
PROGRAM Test;
uses
math;
BEGIN
writeln( 2.0**5.0 );
END.