another map example explained

This commit is contained in:
Mert Gör 🇹🇷 2024-01-16 02:46:22 +03:00
parent 5f99c61ddf
commit 4274c71f77
Signed by: hwpplayer1
GPG key ID: 03E547D043AB6C8F

View file

@ -19,4 +19,7 @@ func Demo1() {
value, is_value_there := my_dictionary["table"]
fmt.Println(value)
fmt.Println("Listede olma durumu", is_value_there)
my_dictionary2 := map[string]string{"glass":"bardak","microphone":"mikrofon"}
fmt.Println(my_dictionary2)
}