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

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"net/url"
     6  )
     7  
     8  func main() {
     9  	body := url.Values{
    10  		"Action": {"none"},
    11  	}
    12  	fmt.Println(body)
    13  }
    14  
    15  // Output:
    16  // map[Action:[none]]