Files
yaegi/_test/const25.go
T

12 lines
110 B
Go

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