Add output of go mod tidy to Quick Start guide.

Tom Busby 2021-08-12 17:47:24 +02:00
parent e2a0fa95cc
commit ca294ceefe

@ -162,9 +162,10 @@ EOF
Build and run: Build and run:
``` ```
$ go mod tidy $ go mod tidy
go: finding module for package rsc.io/quote
go: found rsc.io/quote in rsc.io/quote v1.5.2
$ go build -o hello $ go build -o hello
$ ./hello $ ./hello
Hello, world. Hello, world.
``` ```