mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 20:39:25 +02:00
14 lines
208 B
ObjectPascal
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.
|