mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
11 lines
113 B
Go
11 lines
113 B
Go
package main
|
|
|
|
var a = map[int]bool{1: true, 2: true}
|
|
|
|
func main() {
|
|
println(a[1] && true)
|
|
}
|
|
|
|
// Output:
|
|
// true
|