Quick actions

cmd+k|ctrl+k

Navigation

Languages

Intance and init map

Snippet info

Language

Go

Visibility

public

Author

ubaidillah.hf

Created

2022-09-07T05:51:58.709071Z

Updated

2022-09-07T05:51:58.709071Z

package main

import (
    "fmt"
)

func main() {
    stringIdx := map[string]bool{
        "saya":true,
        "kamu":true,
    }
    fmt.Println("Hello World! =>",stringIdx["l"])
}
INFO