gobuch/golang-language-samples/sampledoc/first_example_test.go

13 lines
107 B
Go
Raw Normal View History

2020-08-21 04:26:40 +00:00
package sampledoc
import "fmt"
func ExampleAdd() {
res := Add(1, 2)
fmt.Println(res)
//Output: 3
}