package main

import (
	"fmt"

	"time"

	"rsc.io/quote"
)

func main() {
	fmt.Println("Hello, World!")
	fmt.Println(quote.Go())
	fmt.Println("The time is", time.Now())
}