summaryrefslogtreecommitdiff
path: root/fpcdocs/refex/ex70.pp
blob: 8fd82f3a676798204b102bea9bd38a49e4e2dca3 (plain)
1
2
3
4
5
6
7
8
9
10
Program Example70;

{ Program to demonstrate the Trunc function. }

begin
  Writeln (Trunc(123.456));  { Prints 123  }
  Writeln (Trunc(-123.456)); { Prints -123 }
  Writeln (Trunc(12.3456));  { Prints 12   }
  Writeln (Trunc(-12.3456)); { Prints -12  }
end.