go-playground/learn-with-go-tests/integers/adder.go

6 lines
59 B
Go

package integers
func Add(x, y int) int {
return x + y
}