Files
go_with_tests/integers/integers.go

7 lines
87 B
Go

package integers
// Add two numbers together
func Add(x, y int) int {
return x + y
}