6 lines
95 B
Go
6 lines
95 B
Go
package integers
|
|
|
|
// Returns the sum of two integers.
|
|
func Add(x, y int) int {
|
|
return x + y
|
|
}
|