1-- go.mod -- 2module example.com/basic 3 4go 1.12 5-- a/a.go -- 6package a 7 8func A() int { return 1 } 9func A2() int { return 2 } 10-- b/b.go -- 11package b 12 13func B() int { return 3 }
View as plain text