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