diff --git a/maps/demo1.go b/maps/demo1.go index a354f90..c934157 100644 --- a/maps/demo1.go +++ b/maps/demo1.go @@ -16,6 +16,7 @@ func Demo1() { fmt.Println("String number : ", len(my_dictionary)) fmt.Println("Dictionary", my_dictionary) - value := my_dictionary["table"] + value, is_value_there := my_dictionary["table"] fmt.Println(value) + fmt.Println("Listede olma durumu", is_value_there) } \ No newline at end of file