Source file tour/welcome/sandbox.go

     1  // +build OMIT
     2  
     3  package main
     4  
     5  import (
     6  	"fmt"
     7  	"time"
     8  )
     9  
    10  func main() {
    11  	fmt.Println("Welcome to the playground!")
    12  
    13  	fmt.Println("The time is", time.Now())
    14  }
    15  

View as plain text