7 lines
80 B
Go
7 lines
80 B
Go
//go:build !solution
|
|
|
|
package sum
|
|
|
|
func Sum(a, b int64) int64 {
|
|
return a + b
|
|
}
|