summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex34.pp
blob: d14757db53702a5e750843a26895df821f68574b (plain)
1
2
3
4
5
6
7
8
Program Example34;

{ Program to demonstrate the Int function. }

begin
  Writeln (Int(123.456):0:1);  { Prints  123.0 }
  Writeln (Int(-123.456):0:1); { Prints -123.0 }
end.