Import

Find a package

Go Packages - Go Packages
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
https://pkg.go.dev/

Reference the package

Copy the name from the top of the webpage rcs.io/quote/v4

Use it in your code

Note: that packages within your current module can easily be referenced instead, by <moduleName>/<pathToPackage>

package main

import (
	"fmt"
	
	"rsc.io/quote/v4"
)

func main() {
	fmt.Println(quote.Go())
}

Download the imports

go mod tidy