5 lines
60 B
Bash
5 lines
60 B
Bash
multiply() {
|
|
echo -n $(($1 * $2))
|
|
}
|
|
|
|
echo $(multiply 5 6)
|