From 4274c71f77a2f5f84e1994fa64e882fcbfd21338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Tue, 16 Jan 2024 02:46:22 +0300 Subject: [PATCH] another map example explained --- maps/demo1.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/maps/demo1.go b/maps/demo1.go index c934157..5b269be 100644 --- a/maps/demo1.go +++ b/maps/demo1.go @@ -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) } \ No newline at end of file