learning-golang/export.go

7 lines
75 B
Go

package main
// Add return a + b
func Add(a, b int) int {
return a + b
}