github.com/traefik/yaegi@v0.15.1/_test/make.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"net/http"
     6  )
     7  
     8  func main() {
     9  	h := make(http.Header)
    10  	fmt.Println("h:", h)
    11  }
    12  
    13  // Output:
    14  // h: map[]