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