5 lines
64 B
AppleScript
5 lines
64 B
AppleScript
on multiply(a, b)
|
|
return a * b
|
|
end multiply
|
|
|
|
multiply(2, 3)
|