Learning Go Language – Day 3
Maps - Collections of value types that are access via keys - Created via literals or via "make" function - Creation syntax: - name = map[type]type() - Alt creation =…
Maps - Collections of value types that are access via keys - Created via literals or via "make" function - Creation syntax: - name = map[type]type() - Alt creation =…
Primitives Booleans Booleans: - Values are true or false - NOT an alias for other types (I.E int) unlike in other programming languages - Zero value is false // Boolean…
Key features of the Go language: - Simplicity - Strong and statically typed - Fast compile times - Garbage collected, AKA you do not need to manage your own memory…