go-tour/sandbox.go

13 lines
153 B
Go
Raw Normal View History

2020-02-05 03:44:36 +00:00
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Welcome to the playground!")
fmt.Println("The time is", time.Now())
}