6 lines
59 B
Bash
6 lines
59 B
Bash
multiply() {
|
|
return $(($1 * $2))
|
|
}
|
|
|
|
multiply 5 6
|
|
echo $?
|