go-tour/sandbox.go
2020-02-04 21:44:36 -06:00

13 lines
153 B
Go

package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Welcome to the playground!")
fmt.Println("The time is", time.Now())
}