16 lines
170 B
Go
16 lines
170 B
Go
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())
|
|
}
|