Function composition: Difference between revisions

m
(Ada solution added)
m (→‎{{header|Ada}}: Formatting)
Line 29:
<lang ada>
package body Functions is
function "*" (Left : Func; Right : Argument) return Argument is
Result : Argument := Right;
begin
for I in reverse Left'Range loop
Line 73:
5.00000E-01
</pre>
 
=={{header|ALGOL 68}}==
{{trans|Python}}