messing-with-go/quote/hello.go

12 lines
173 B
Go

package main
import "fmt"
import "rsc.io/quote"
func main() {
fmt.Println(quote.Go())
fmt.Println(quote.Glass())
fmt.Println(quote.Hello())
fmt.Println(quote.Opt())
}