8 lines
79 B
Text
8 lines
79 B
Text
|
|
mata
|
||
|
|
scalar multiply(scalar x, scalar y) {
|
||
|
|
return(x*y)
|
||
|
|
}
|
||
|
|
|
||
|
|
multiply(77,13)
|
||
|
|
end
|