Exercises & activities from the go workshop provided by Packt: https://courses.packtpub.com/courses/go
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

28 lines
417 B

package main
import (
"fmt"
"time"
)
func main() {
var count int
fmt.Printf("Count: %#v \n", count)
var discount float64
fmt.Printf("Discount: %#v \n", discount)
var debug bool
fmt.Printf("Debug: %#v \n", debug)
var msg string
fmt.Printf("Msg: %#v \n", msg)
var emails []string
fmt.Printf("eMails: %#v \n", emails)
var startTime time.Time
fmt.Printf("Start: %#v \n", startTime)
}