summaryrefslogtreecommitdiff
path: root/fpcdocs/mathex/ex11.pp
blob: dd751ec03384ad03bfec306a26f00ff0aa3e48dd (plain)
1
2
3
4
5
6
7
8
9
10
11
Program Example11;

{ Program to demonstrate the degtograd function. }

Uses math;

begin
  writeln(degtograd(90));
  writeln(degtograd(180));
  writeln(degtograd(270))
end.