Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Maps

For initializing an empty map:

var dictionary = map[string]string{}

or

var dictionary = make(map[string]string)

Both approaches create an empty hash map and point dictionary at it.