print_hello_world() {
	echo "Hello, world!"
}

print_hello_world
add() {
	echo $(($1 + $2))
}

add 1 2
add 2 3