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