mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
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[]
|