go-by-test/integers/adder.go
2024-09-10 13:04:47 +02:00

6 lines
59 B
Go

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