28 lines
866 B
Go
28 lines
866 B
Go
// Copyright © 2018 Inanc Gumus
|
|
// Learn Go Programming Course
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
//
|
|
// For more tutorials : https://learngoprogramming.com
|
|
// In-person training : https://www.linkedin.com/in/inancgumus/
|
|
// Follow me on twitter: https://twitter.com/inancgumus
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
names := []string{"Einstein", "Tesla", "Shepard"}
|
|
distances := []int{50, 40, 75, 30, 125}
|
|
data := []byte{'H', 'E', 'L', 'L', 'O'}
|
|
ratios := []float64{3.14145}
|
|
alives := []bool{true, false, true, false}
|
|
zero := []byte{}
|
|
|
|
fmt.Printf("names : %[1]T %[1]q\n", names)
|
|
fmt.Printf("distances: %[1]T %[1]d\n", distances)
|
|
fmt.Printf("data : %[1]T %[1]d\n", data)
|
|
fmt.Printf("ratios : %[1]T %.2[1]f\n", ratios)
|
|
fmt.Printf("alives : %[1]T %[1]t\n", alives)
|
|
fmt.Printf("zero : %[1]T %[1]d\n", zero)
|
|
}
|