RosettaCodeData/Task/Naming-conventions/ALGOL-68/naming-conventions-2.alg
2023-07-01 13:44:08 -04:00

6 lines
410 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

PROC long long cos = (LONG LONG REAL x) LONG LONG REAL: ¢ a real value close to the cosine of 'x' ¢;
PROC long long complex cos = (LONG LONG COMPL z) LONG LONG COMPL: ¢ a complex value close to the cosine of 'z' ¢;
PROC long long arccos = (LONG LONG REAL x) LONG LONG REAL: ¢ if ABS x ≤ 1, a real value close
to the inverse cosine of 'x', 0 ≤ arccos (x) ≤ pi ¢;