Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Intialize a map with values in Go

Map can be initialized with keys and values on declaration with curly braces syntax instead of a make method.

Example : Declare and Initialize map in Golang
package main

import "fmt"

func main() {
    myMap := map[string]string{"key": "value"}
    fmt.Printf("%v", myMap)
}