maps.go 570 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package main
  2. import (
  3. "fmt"
  4. )
  5. func main() {
  6. fmt.Println("Maps")
  7. usuario := map[string]string{
  8. "nome": "Fernando",
  9. "sobrenome": "Paschoeto",
  10. }
  11. fmt.Println(usuario)
  12. fmt.Println(usuario["nome"])
  13. usuario2 := map[string]map[string]string{
  14. "nome": {
  15. "primeiro": "fernando",
  16. "segundo": "Paschoeto",
  17. },
  18. "profissao": {
  19. "cargo": "analista",
  20. "empresa": "Prinse",
  21. },
  22. }
  23. fmt.Println(usuario2)
  24. delete(usuario2, "nome")
  25. fmt.Println(usuario2)
  26. usuario2["signo"] = map[string]string{
  27. "nome": "Aquarios",
  28. }
  29. fmt.Println(usuario2)
  30. }