Files
moxa/_test/const25.go
2021-03-09 11:58:04 +01:00

12 lines
110 B
Go

package main
const (
FGBlack Attribute = iota + 30
)
type Attribute int
func main() {
println(FGBlack)
}