learn-go-with-tests/integers/adder.go
2023-10-03 15:08:17 -04:00

7 lines
114 B
Go

package integers
// Add takes two integers and returns the sum of them.
func Add(x, y int) int {
return x + y
}