mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
12 lines
118 B
Go
12 lines
118 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
var data = make(map[string]string)
|
|
fmt.Println(data["key"] == "")
|
|
|
|
}
|