goc/tests/samples/simple_project_with_internal/main.go

13 lines
157 B
Go
Raw Normal View History

package main
2020-07-21 03:49:57 +00:00
import (
"example.com/simple-project/foo"
"example.com/simple-project/internal"
)
func main() {
2020-07-21 03:49:57 +00:00
foo.Bar1()
foo.Bar2()
internal.Hello()
}