Files

38 lines
934 B
Go
Raw Permalink Normal View History

2019-05-05 00:41:44 +03:00
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
2019-10-30 19:34:44 +03:00
// For more tutorials : https://learngoprogramming.com
// In-person training : https://www.linkedin.com/in/inancgumus/
// Follow me on twitter: https://twitter.com/inancgumus
2019-05-05 00:41:44 +03:00
package main
import "fmt"
func main() {
var (
phones map[string]string
// Key : Last name
2019-05-05 00:47:55 +03:00
// Element : Phone number
2019-05-05 00:41:44 +03:00
// Key : Product ID
// Element : Available / Unavailable
products map[int]bool
multiPhones map[string][]string
// Key : Last name
// Element : Phone numbers
basket map[int]map[int]int
// Key : Customer ID
// Element Key:
// Key: Product ID Element: Quantity
)
fmt.Printf("phones : %#v\n", phones)
fmt.Printf("products : %#v\n", products)
fmt.Printf("multiPhones: %#v\n", multiPhones)
fmt.Printf("basket : %#v\n", basket)
}