Ethiopian multiplication: Difference between revisions

→‎{{header|ActionScript}}: Marked incorrect as the task asks for three functions to be defined and used in the solution
(Added ActionScript)
(→‎{{header|ActionScript}}: Marked incorrect as the task asks for three functions to be defined and used in the solution)
Line 52:
 
=={{header|ActionScript}}==
{{incorrect|ActionScript|Task asks for three functions to be defined and used in the solution.}}
<lang ActionScript>public function Multiply(a:int,b:int):int {
var res:int = 0;
Line 61 ⟶ 62:
return res;
}</lang>
 
=={{header|Ada}}==
<lang Ada>package Ethiopian is
Anonymous user