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