zsh-autosuggestions/test/shunit2-2.1.6/examples/math.inc
Eric Freese 775dd20706 Rewrite
2016-02-06 21:05:02 -07:00

17 lines
149 B
PHP

# available as examples/math.inc
add_generic()
{
num_a=$1
num_b=$2
expr $1 + $2
}
add_bash()
{
num_a=$1
num_b=$2
echo $(($1 + $2))
}