5 lines
144 B
AppleScript
5 lines
144 B
AppleScript
on multiply:a |by|:b -- 'by' is "barred" here because otherwise it's a reserved word.
|
|
return a * b
|
|
end multiply:|by|:
|
|
|
|
my multiply:2 |by|:3
|