7 lines
113 B
Go
7 lines
113 B
Go
package integers
|
|
|
|
// Add takes two integers and return the sum of them.
|
|
func Add(a, b int) int {
|
|
return a + b
|
|
}
|