zsh-autosuggestions/test/shunit2-2.1.6/examples/math.inc

18 lines
149 B
PHP
Raw Normal View History

2016-02-05 23:14:08 +01:00
# 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))
}