...
Text file
src/cmd/go/testdata/mod/example.com_tools_v1.1.0.txt
1-- .info --
2{"Version": "v1.1.0"}
3-- .mod --
4module example.com/tools
5-- cmd/hello/hello.go --
6package main
7
8import "fmt"
9
10func main() {
11 fmt.Println("hello v1.1")
12}
View as plain text