Files
moxa/_test/composite11.go
2020-07-08 22:55:03 +02:00

16 lines
138 B
Go

package main
import (
"fmt"
"image/color"
)
func main() {
c := color.NRGBA64{1, 1, 1, 1}
fmt.Println(c)
}
// Output:
// {1 1 1 1}