4 lines
68 B
Text
4 lines
68 B
Text
define multiply(a: Integer, b: Integer): Integer
|
|
{
|
|
return a * b
|
|
}
|