← Home

Bash Terminal

  SCORE: 0 / 20
Challenge 1: add_two_numbers
Print the sum of two arguments
add_two_numbers() { local a=$1 b=$2 # your code here }
add_two_numbers 2 3 -> 5
1 / 20