RosettaCodeData/Task/Function-definition/GAP/function-definition.gap

4 lines
48 B
Plaintext

multiply := function(a, b)
return a*b;
end;