15 lines
131 B
Go
15 lines
131 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func main() {
|
|
h := make(http.Header)
|
|
fmt.Println("h:", h)
|
|
}
|
|
|
|
// Output:
|
|
// h: map[]
|