github.com/hikaru7719/go@v0.0.0-20181025140707-c8b2ac68906a/src/cmd/go/testdata/mod/research.swtch.com_vgo-tour_v1.0.0.txt (about)

     1  research.swtch.com/vgo-tour@v1.0.0
     2  
     3  -- .mod --
     4  module "research.swtch.com/vgo-tour"
     5  -- .info --
     6  {"Version":"v1.0.0","Name":"84de74b35823c1e49634f2262f1a58cfc951ebae","Short":"84de74b35823","Time":"2018-02-20T00:04:00Z"}
     7  -- go.mod --
     8  module "research.swtch.com/vgo-tour"
     9  -- hello.go --
    10  // Copyright 2018 The Go Authors. All rights reserved.
    11  // Use of this source code is governed by a BSD-style
    12  // license that can be found in the LICENSE file.
    13  
    14  package main
    15  
    16  import (
    17  	"fmt"
    18  	"rsc.io/quote"
    19  )
    20  
    21  func main() {
    22  	fmt.Println(quote.Hello())
    23  }