7 lines
87 B
Go
7 lines
87 B
Go
package integers
|
|
|
|
// Add two numbers together
|
|
func Add(x, y int) int {
|
|
return x + y
|
|
}
|