Text file src/cmd/go/testdata/mod/example.com_tools_v1.0.0.txt

     1  -- .info --
     2  {"Version": "v1.0.0"}
     3  -- .mod --
     4  module example.com/tools
     5  -- cmd/hello/hello.go --
     6  package main
     7  
     8  import "fmt"
     9  
    10  func main() {
    11  	fmt.Println("hello")
    12  }
    13  

View as plain text