6 lines
144 B
AppleScript
6 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
|