9 lines
380 B
Ada
9 lines
380 B
Ada
Ada.Numerics.e -- Euler's number
|
|
Ada.Numerics.pi -- pi
|
|
sqrt(x) -- square root
|
|
log(x, base) -- logarithm to any specified base
|
|
exp(x) -- exponential
|
|
abs(x) -- absolute value
|
|
S'floor(x) -- Produces the floor of an instance of subtype S
|
|
S'ceiling(x) -- Produces the ceiling of an instance of subtype S
|
|
x**y -- x raised to the y power
|