去颜色
一个用 Go 编写的颜色工具,灵感来自
安装
$ go get github.com/turingou/go-colors
例子
package main
import "fmt"
import . "github.com/turingou/go-colors" // Import to global
func main () {
fmt . Printf ( "Im a %s \n " , Color ( "yellow" , "yellow text" ))
}
或者直接运行示例代码:
$ go run github.com/turingou/go-colors/examples/colors.go
应用程序接口
检查这个文件: colors.go
测试
运行测试:
$ go test
贡献
Fork 这个 repo
克隆你的仓库
安装依赖
签出一个功能分支
2021-07-10 12:03:35
77KB
Go
1