RosettaCodeData/Task/Real-constants-and-functions/Modula-3/real-constants-and-functions.mod3
2023-07-01 13:44:08 -04:00

9 lines
178 B
Text

Math.E;
Math.Pi;
Math.sqrt(x);
Math.log(x);
Math.exp(x);
ABS(x); (* Built in function. *)
FLOOR(x); (* Built in function. *)
CEILING(x); (* Built in function. *)
Math.pow(x, y);