1 Star 0 Fork 0

legend奇/utils-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
color-print.go 468 Bytes
一键复制 编辑 原始数据 按行查看 历史
legend奇 提交于 2021-03-04 17:51 . 代码分包整理
/* coding: utf-8
@Time : 2021/3/4 下午2:01
@Author : legend
@File : color-print.go
*/
package main
import "fmt"
const (
TextBlack = iota + 30
TextRed
TextGreen
TextYellow
TextBlue
TextMagenta
TextCyan
TextWhite
)
func ColorPrint(data string, color int) {
fmt.Printf("\n %c[%d;%d;%dm%s%c[0m\n", 0x1B, 0, 0, color, data, 0x1B)
}
func InfoPrint(data string) {
ColorPrint(data, TextGreen)
}
func ErrorPrint(data string) {
ColorPrint(data, TextRed)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/legendqi/utils-go.git
git@gitee.com:legendqi/utils-go.git
legendqi
utils-go
utils-go
master

搜索帮助