github.com/traefik/yaegi@v0.15.1/_test/composite11.go (about) 1 package main 2 3 import ( 4 "fmt" 5 "image/color" 6 ) 7 8 func main() { 9 c := color.NRGBA64{1, 1, 1, 1} 10 11 fmt.Println(c) 12 } 13 14 // Output: 15 // {1 1 1 1}