You are viewing a single comment's thread. Return to all comments →
calc_numbers () { read x read y
echo $((x + y)) echo $((x - y)) echo $((x * y)) echo $((x / y))
}
calc_numbers
Seems like cookies are disabled on this browser, please enable them to open this website
The World of Numbers
You are viewing a single comment's thread. Return to all comments →
!/bin/bash
calc_numbers () { read x read y
}
calc_numbers