4 lines
78 B
Text
4 lines
78 B
Text
|
|
sub multiply(a: int32, b: int32): (rslt: int32) is
|
||
|
|
rslt := a * b;
|
||
|
|
end sub
|